SyncFusion - how to make certain controls
Attachment: Outlook2013StatusBar_7baa1e9a.zip
Thanks for contacting Syncfusion Support.
Query 1: Is it possible to change Theme in one place and to propagate that change to whole windows forms app - in mdi to all child forms and in sdi to all open forms.
Yes. You can change the appearance of all the Syncfusion controls used in windows form application by specifying the Visual style. We have prepared a sample for your reference which can be download from the following location
Sample Location: https://www.syncfusion.com/downloads/support/forum/120754/ze/VisualStyle-123622461
The following code example helps to specify the color theme appearance for ComboBoxAdv.
Code Example [C#]
| //To set the Default appearance this.comboBoxAdv1.Style = Syncfusion.Windows.Forms.VisualStyle.Default; //To set the Metro style appearance this.comboBoxAdv1.Style = Syncfusion.Windows.Forms.VisualStyle.Metro; //To set the Office2003 style appearance this.comboBoxAdv1.Style = Syncfusion.Windows.Forms.VisualStyle.Office2003; //To set the Office2007 style appearance this.comboBoxAdv1.Style = Syncfusion.Windows.Forms.VisualStyle.Office2007; //To set the Office2007Outlook style appearance this.comboBoxAdv1.Style = Syncfusion.Windows.Forms.VisualStyle.Office2007Outlook; //To set the Office2010 style appearance this.comboBoxAdv1.Style = Syncfusion.Windows.Forms.VisualStyle.Office2010; //To set the OfficeXP style appearance this.comboBoxAdv1.Style = Syncfusion.Windows.Forms.VisualStyle.OfficeXP; //To set the VS2005 style appearance this.comboBoxAdv1.Style = Syncfusion.Windows.Forms.VisualStyle.VS2005; //To set the VS2010 style appearance this.comboBoxAdv1.Style = Syncfusion.Windows.Forms.VisualStyle.VS2010; |
Like the above code example, we can specify the color theme for all the Syncfusion controls. If we have misunderstood the stated requirement, Could you please share us screenshot with proper details? It would be helpful to provide proper solution. Based on your confirmation we will let you know the details of this.
Query 2: How to make Outlook 2014 status bar with Captions (Style) like shown in "Outlook2013StatusBar.png" in attachment and how to add kind of tooltip shown in "Outlook2013StatusBarPopup.png" in attachment.
The reported requirement (To make Outlook 2014 status bar with captions) can be achieved by using the StatusBarEx. At present, we don’t have an option to customize the ToolTip as shown in shared image. Additionally, we have prepared a sample to achieve your requirement by using the PopupControlContainer which can be download from the following location.
Sample Location: https://www.syncfusion.com/downloads/support/forum/120754/ze/StatusBarAdv_Office2014380579577
The following code example helps to show the Popup at the specified location.
Code Example [C#]
| // To show the Popup control for specified location. this.popupControlContainer1.ShowPopup(new Point(Cursor.Position.X - this.popupControlContainer1.Width / 2, Cursor.Position.Y - this.popupControlContainer1.Height - 2)); |
Screenshot:
Regards,
Saravanan T
Attachment: Visual_Style_s_e8cfe6ba.zip
Thank you for your valuable feedback.
We have prepared a sample based on the shared screenshot and it can be download from the following location.
Sample Location: https://www.syncfusion.com/downloads/support/forum/120754/ze/VisualStyle-1771798378
Screenshot:
Could you please check with this sample and let us know if it helps?
Regards,
Saravanan T
Thank you for your update.
Please let us know if you need any further assistance.
Regards,
Saravanan T
- 5 Replies
- 2 Participants
-
SY SysNop
- Oct 12, 2015 09:35 AM UTC
- Oct 19, 2015 06:11 AM UTC