-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
20 lines (20 loc) · 920 Bytes
/
MainWindow.xaml
File metadata and controls
20 lines (20 loc) · 920 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Window x:Class="Localization.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:syncfusion="http://schemas.syncfusion.com/wpf"
Title="PropertyGrid - Localization"
WindowStartupLocation="CenterScreen"
Height="500" Width="600">
<StackPanel HorizontalAlignment="Center"
VerticalAlignment="Center">
<syncfusion:PropertyGrid MenuButtonVisibility="True"
x:Name="pgrid"
Width="400"
Height="400"
Margin="30">
<syncfusion:PropertyGrid.SelectedObject>
<syncfusion:TileViewControl/>
</syncfusion:PropertyGrid.SelectedObject>
</syncfusion:PropertyGrid >
</StackPanel>
</Window>