-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMainWindow.xaml
29 lines (29 loc) · 1.12 KB
/
MainWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Window
x:Class="Localization.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:Localization"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:skin="clr-namespace:Syncfusion.SfSkinManager;assembly=Syncfusion.SfSkinManager.WPF"
xmlns:syncfusion="http://schemas.syncfusion.com/wpf"
Title="Localization"
Width="500"
Height="500"
skin:SfSkinManager.VisualStyle="Office2016Colorful"
WindowStartupLocation="CenterScreen"
mc:Ignorable="d">
<Grid x:Name="grid">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="0.5*" />
<ColumnDefinition Width="0.5*" />
</Grid.ColumnDefinitions>
<syncfusion:DateTimeEdit Width="200" Height="25" />
<syncfusion:DateTimeEdit
Grid.Column="1"
Width="200"
Height="25"
IsEmptyDateEnabled="True"
ShowMaskOnNullValue="False" />
</Grid>
</Window>