Mini Kabibi Habibi
<local:GridDemoModule x:Class="GridDemo.MultiEditors"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid"
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"
xmlns:dxdb="http://schemas.devexpress.com/winfx/2008/xaml/demobase"
xmlns:local="clr-namespace:GridDemo"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
mc:Ignorable="d" d:DesignHeight="400" d:DesignWidth="800">
<local:GridDemoModule.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/GridDemo;component/Descriptions/MultiEditorDescriptions.xaml" />
</ResourceDictionary.MergedDictionaries>
<local:CountriesData x:Key="CountriesData"/>
</ResourceDictionary>
</local:GridDemoModule.Resources>
<dxdb:DemoModuleControl>
<dxdb:DemoModuleControl.OptionsContent>
<dx:GroupFrame Header="Highlighted Editor" MinWidth="150" MaxWidth="230">
<RichTextBox x:Name="descriptionRichTextBox" Background="Transparent" BorderThickness="0" IsReadOnly="True" />
</dx:GroupFrame>
</dxdb:DemoModuleControl.OptionsContent>
<dxg:GridControl Name="grid">
<dxg:GridControl.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/GridDemo;component/ModuleResources/MultiEditorsTemplates.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</dxg:GridControl.Resources>
<dxg:GridControl.View>
<dxg:TableView x:Name="view" ShowGroupPanel="False" AllowSorting="False" AllowColumnFiltering="False" AllowHorizontalScrollingVirtualization="True"
ShowGridMenu="TableView_ShowGridMenu" FocusedRowHandleChanged="TableView_FocusedRowChanged" ShowingEditor="TableView_ShowingEditor" />
</dxg:GridControl.View>
</dxg:GridControl>
</dxdb:DemoModuleControl>
</local:GridDemoModule>