-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWindow1.xaml
30 lines (28 loc) · 1.71 KB
/
Window1.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
30
<Window x:Class="Google_Bookmarks_Manager_for_GPOs.ImportWindow"
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Google_Bookmarks_Manager_for_GPOs"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
WindowStartupLocation="CenterScreen" ResizeMode="NoResize"
TextElement.Foreground="{DynamicResource MaterialDesign.Brush.Foreground}"
Background="{DynamicResource MaterialDesign.Brush.Background}"
TextElement.FontWeight="Regular"
TextElement.FontSize="12"
FontFamily="{materialDesign:MaterialDesignFont}"
Title="Import Bookmarks" Height="300" Width="500"
TextOptions.TextFormattingMode="Ideal"
TextOptions.TextRenderingMode="Auto">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<TextBox Grid.Row="0" Margin="10" x:Name="jsonTextBox" TextWrapping="Wrap" AcceptsReturn="True" />
<StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Right" Margin="10">
<Button x:Name="importButton" Content="Import" Width="100" Margin="5" Click="importButton_Click" Style="{DynamicResource MaterialDesignRaisedButton}"/>
<Button x:Name="cancelButton" Content="Cancel" Width="100" Margin="5" Click="cancelButton_Click" Style="{DynamicResource MaterialDesignRaisedButton}"/>
</StackPanel>
</Grid>
</Window>