-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
GenericEditor.xaml
17 lines (15 loc) · 938 Bytes
/
GenericEditor.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="FSClient.GenericEditor"
x:Name="Window"
Title="GenericEditor"
Width="447" Height="480" WindowStyle="ThreeDBorderWindow" ResizeMode="NoResize" Icon="phone.ico">
<Grid x:Name="LayoutRoot">
<TabControl Margin="8,44,14,53" Name="tabControlMain">
</TabControl>
<Button x:Name="btnCancel" Content="Cancel" HorizontalAlignment="Right" Margin="0,0,82,17.04" VerticalAlignment="Bottom" Width="75" Click="btnCancel_Click" IsCancel="True" />
<Button x:Name="btnSave" Content="Save" HorizontalAlignment="Left" Margin="57,0,0,17.04" VerticalAlignment="Bottom" Width="75" Click="btnSave_Click" IsDefault="True" />
<TextBlock Height="29" Margin="8,9,14,0" Name="txtTitle" Text="Title Here" VerticalAlignment="Top" FontSize="20" FontWeight="Bold" TextAlignment="Center" />
</Grid>
</Window>