-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInstructions.xaml
58 lines (45 loc) · 2.33 KB
/
Instructions.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<Window x:Class="ComputerShutdown.Instructions"
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:ComputerShutdown"
mc:Ignorable="d"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
TextElement.Foreground="{DynamicResource MaterialDesignBody}"
TextElement.FontWeight="Regular"
TextElement.FontSize="13"
TextOptions.TextFormattingMode="Ideal"
TextOptions.TextRenderingMode="Auto"
Background="{DynamicResource MaterialDesignPaper}"
FontFamily="{DynamicResource MaterialDesignFont}"
Icon="favicon.ico"
Title="说明" Height="460" Width="360">
<Grid Margin="10">
<Grid.RowDefinitions>
<RowDefinition Height="60">
</RowDefinition>
<RowDefinition Height="270">
</RowDefinition>
<RowDefinition Height="24">
</RowDefinition>
<RowDefinition Height="24">
</RowDefinition>
<RowDefinition Height="24">
</RowDefinition>
</Grid.RowDefinitions>
<TextBlock Grid.Row="0" Foreground="Red" Block.TextAlignment="Center" VerticalAlignment="Center" x:Name="Remarks" TextWrapping="Wrap"></TextBlock>
<TextBlock Grid.Row="1" Margin="50,0,50,0" Block.TextAlignment="Center" VerticalAlignment="Center" x:Name="Info" TextWrapping="Wrap"></TextBlock>
<TextBlock Grid.Row="2" Block.TextAlignment="Right" VerticalAlignment="Center" x:Name="Author" TextWrapping="Wrap">
作者:tianmeng
</TextBlock>
<TextBlock Block.TextAlignment="Right" VerticalAlignment="Center" Grid.Row="3" x:Name="Mail" TextWrapping="Wrap">
mail: [email protected]
</TextBlock>
<TextBlock Block.TextAlignment="Right" VerticalAlignment="Center" Grid.Row="4" x:Name="GitHub" TextWrapping="Wrap">
<Hyperlink NavigateUri="https://github.com/tianme" Name="linkHelp" Click="linkHelp_Click">
GitHub
</Hyperlink>
</TextBlock>
</Grid>
</Window>