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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
| <Window
| x:Class="HStation.WinFrmUI.Auth.Core._06_user_info.Window1"
| 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:HStation.WinFrmUI.Auth.Core._06_user_info"
| xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
| Title="Window1"
| Width="800"
| Height="450"
| mc:Ignorable="d">
| <Grid>
| <Grid.ColumnDefinitions>
| <ColumnDefinition Width="100" />
| <ColumnDefinition Width="700" />
| </Grid.ColumnDefinitions>
|
| <!-- 左侧菜单 -->
| <Border
| Grid.Column="0"
| Grid.ColumnSpan="2"
| BorderBrush="#EEE"
| BorderThickness="0,0,1,0">
| <ListBox
| Width="121"
| HorizontalAlignment="Left"
| BorderThickness="0"
| SelectedIndex="0">
| <ListBoxItem>
| <TextBlock
| Padding="10,8"
| FontSize="14"
| Text="账号设置" />
| </ListBoxItem>
| <ListBoxItem>
| <TextBlock
| Padding="10,8"
| FontSize="14"
| Text="消息通知" />
| </ListBoxItem>
| <ListBoxItem>
| <TextBlock
| Padding="10,8"
| FontSize="14"
| Text="通用设置" />
| </ListBoxItem>
| <ListBoxItem>
| <TextBlock
| Padding="10,8"
| FontSize="14"
| Text="文件管理" />
| </ListBoxItem>
| <ListBoxItem>
| <TextBlock
| Padding="10,8"
| FontSize="14"
| Text="快捷键" />
| </ListBoxItem>
| <ListBoxItem />
| </ListBox>
| </Border>
|
| <!-- 右侧内容 -->
| <ScrollViewer
| Grid.Column="1"
| Margin="10,0,0,0"
| RenderTransformOrigin="0.31,0.532"
| VerticalScrollBarVisibility="Auto">
| <ScrollViewer.RenderTransform>
| <TransformGroup>
| <ScaleTransform />
| <SkewTransform />
| <RotateTransform Angle="720.108" />
| <TranslateTransform X="0.064" Y="0.592" />
| </TransformGroup>
| </ScrollViewer.RenderTransform>
| <StackPanel Margin="20">
| <!-- 用户信息 -->
| <StackPanel Margin="0,0,0,20" Orientation="Horizontal">
| <Border
| Width="60"
| Height="60"
| Background="#EEE"
| CornerRadius="30" />
| <StackPanel Margin="200,18,0,0">
| <TextBlock
| FontSize="18"
| FontWeight="DemiBold"
| Text="测试" />
| </StackPanel>
| </StackPanel>
|
| <!-- 自动登录设置 -->
| <Border
| Padding="0,0,0,15"
| BorderBrush="#EEE"
| BorderThickness="0,0,0,1">
| <StackPanel>
| <StackPanel HorizontalAlignment="Left" Orientation="Horizontal">
| <TextBlock
| VerticalAlignment="Center"
| FontSize="14"
| Text="自动登录" />
| <Button
| Margin="15,0,0,0"
| Padding="15,5"
| Background="#07C160"
| BorderThickness="0"
| Content="已开启"
| Cursor="Hand"
| Foreground="White" />
| <TextBlock
| Margin="10,0,0,0"
| VerticalAlignment="Center"
| Cursor="Hand"
| Foreground="#576B95"
| Text="关闭" />
| </StackPanel>
| <TextBlock
| Foreground="#999"
| Text="开启后,在本机登录微信将无需手机确认。可在手机和电脑上关闭。"
| TextWrapping="Wrap" />
| </StackPanel>
| </Border>
|
| <!-- 退出登录 -->
| <Button
| Margin="0,30,0,0"
| Padding="30,8"
| HorizontalAlignment="Left"
| Background="#07C160"
| BorderThickness="0"
| Content="退出登录"
| FontSize="14"
| Foreground="#FFF" />
| </StackPanel>
| </ScrollViewer>
| </Grid>
| </Window>
|
|