-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
19 lines (19 loc) · 846 Bytes
/
Copy pathMainWindow.xaml
File metadata and controls
19 lines (19 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Window x:Class="DXGridThreads.MainWindow"
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:local="clr-namespace:DXGridThreads"
xmlns:dxmvvm="http://schemas.devexpress.com/winfx/2008/xaml/mvvm"
Title="MainWindow"
Width="525"
Height="350">
<Window.DataContext>
<local:ViewModel />
</Window.DataContext>
<dxg:GridControl AutoGenerateColumns="AddNew" ItemsSource="{Binding Source}">
<dxmvvm:Interaction.Behaviors>
<local:GridUpdateService />
</dxmvvm:Interaction.Behaviors>
</dxg:GridControl>
</Window>