How to: Implement Browser-style Tab Behavior in DXTabControl Using StretchView
One of DXTabControl's supported views is TabControlStretchView. This view automatically stretches tab headers to all available space in the Tab Header Panel and allows dragging tabs in the...
View ArticleHow to: Change Tab Background in DXTabControl and Keep the Default Gradient...
To change tab background in DXTabControl, use the BackgroundColor property. This property changes the tab background color when it's not active and affects the line color displayed in the tab header...
View ArticleHow to: Change the Tab Background in DXTabControl when a Tab Is Selected,...
In DXTabControl, tabs have different colors when they are selected, focused, or hovered. In this example, it's demonstrated how to change the tab background for all these states. You can do this by...
View ArticleHow to: Customize DXTabControl's Content Header, Content Footer and Control...
DXTabControl provides special templates to customize the footer, header and control box areas. These templates are:...
View ArticleHow to: Automatically Uncheck Items in a Group When One Item Is Checked
This example demonstrates how to create a group of items where only one item can be checked. To implement this functionality, a special bar item is used: BarItemSelector. When you select an item...
View ArticleHow to: Use Services Implementing the IDocumentManagerService Interface
Currently, our MVVM Framework includes a few services implementing the IDocumentManagerService interface: 1. DockingDocumentUIService2. FrameDocumentUIService3. TabbedDocumentUIService4....
View ArticleHow to: Choose DevExpress Themes Using BarSplitButtonItem
This example demonstrates how to use the BarSplitButtonItem to select themes. All logic is incorporated into BarSplitItemThemeSelectorBehavior. So, to activate this functionality, assign the behavior...
View ArticleHow to: Create a Context Menu With DevExpress Bar Items
This example shows how to associate a popup menu with a TextEdit control via the BarManager.DXContextMenu attached property.
View ArticleHow to: Create a Radial Context Menu
This example shows how to assign a RadialContextMenu to a text box and initialize the menu with items.To assign the RadialContextMenu to the text box, the BarManager.DXContextMenu attached property is...
View ArticleHow to: Merge Bars When They are Used in Standard Controls
This example demonstrates the merging behavior of bars when they are used in controls that don't support automatic merging.The example creates a TabControl in which a Tab contains three...
View ArticleHow to: Merge Bars in Controls That Support Automatic Merging
The automatic bar merging is supported by several DevExpress controls:- DXTabControl - see DXTabControl.AllowMerging Property to learn more on how to enable it.- DXDocking - see MDI Bar Merging.In this...
View ArticleGridView - How to automatically resize the grid to 100% width and height when...
This example illustrates how to set the grid's width and height to 100% when it is placed inside a resizable container. The How to use the GridView extension in a Full Screen mode (100% browser Width...
View ArticleHow to: Initiate Navigation between Views from the View Model Using...
The FrameNavigationService provides methods to navigate between Views within a NavigationFrame. This example shows how to use this service.In this example, the MainWindow contains a NavigationFrame,...
View ArticleHow to implement a theme selector based on a bar item
This example demonstrates how to implement the WinForm SkinHelper class functionality in WPF applications (ThemeHelper) that populate an existing RibbonGalleryBarItem or any menu (PopupMenu or...
View ArticleHow to: Create Items with Subitems in TileBar Using XAML
This example shows how to populate TileBar in XAML. To add an item into TileBar, add the TileBarItem element into the TileBar.Items collection. Please note that Items is a content property, so you can...
View ArticleHow to: Bind TileBar to a Collection of Items
To use TileBar according to the MVVM, pattern, you can generate TileBarItems from a collection. To accomplish this task, assign a collection to the TileBar.ItemsSource property. To change properties of...
View ArticleHow to: Create TileNavPane Navigation Buttons and Categories in XAML
This example shows how to create a TileNavPane, populate it with navigation elements and add custom buttons to the nav bar.In the XAML markup, four buttons are added to the NavButtons collection....
View ArticleHow to: Generate Items in TileNavPane from a Collection
This example demonstrates how TileNavPane can be used with the MVVM pattern. TileNavPane has three levels: categories, items and subitems. To generate categories, bind a collection to the...
View ArticleHow to: Use the AppBar Control to Create a Menu That Is Shown on Top or...
This example shows how to create an app bar containing custom regular and toggle buttons, the predefined Exit button, and the button that displays a flyout when clicked.In this example, the AppBar...
View ArticleHow to: Use WinUIDialogWindow and WinUIMessageBox Controls
This Code Example demonstrates how to use the WinUIDialogWindow and WinUIMessageBox controls. The example contains two projects: one demonstrates how to use the controls in the MVVM pattern, and the...
View Article