http://sourceforge.jp/projects/futonwriter/の旧リポジトリ
Revision | e12f985ac609389f6ee9e508d22307f860830390 (tree) |
---|---|
Zeit | 2011-05-11 23:46:28 |
Autor | azyobuzin <azyobuzin@user...> |
Commiter | azyobuzin |
すこしXAMLをいじってみた。雰囲気だけ。反省はしてない。
@@ -6,13 +6,40 @@ | ||
6 | 6 | xmlns:l="http://schemas.livet-mvvm.net/2011/wpf" |
7 | 7 | xmlns:v="clr-namespace:Azyobuzi.HatenaDiaryClient.Views" |
8 | 8 | xmlns:vm="clr-namespace:Azyobuzi.HatenaDiaryClient.ViewModels" |
9 | - Title="MainWindow" Height="350" Width="525"> | |
9 | + Title="HatenaDiaryClient" Height="420" Width="600"> | |
10 | 10 | |
11 | 11 | <Window.DataContext> |
12 | 12 | <vm:MainWindowViewModel/> |
13 | 13 | </Window.DataContext> |
14 | 14 | |
15 | 15 | <Grid> |
16 | + <Grid.RowDefinitions> | |
17 | + <RowDefinition Height="auto"/> | |
18 | + <RowDefinition Height="auto"/> | |
19 | + <RowDefinition Height="auto"/> | |
20 | + <RowDefinition/> | |
21 | + </Grid.RowDefinitions> | |
16 | 22 | |
23 | + <Menu Grid.Row="0"> | |
24 | + <MenuItem Header="ファイル(_F)"> | |
25 | + | |
26 | + </MenuItem> | |
27 | + </Menu> | |
28 | + | |
29 | + <StackPanel Grid.Row="1" Orientation="Horizontal" Background="LightSteelBlue"> | |
30 | + <Button Content="投稿" Width="50" Height="40"/> | |
31 | + </StackPanel> | |
32 | + | |
33 | + <Grid Grid.Row="2" Background="LightBlue"> | |
34 | + <Grid.ColumnDefinitions> | |
35 | + <ColumnDefinition Width="auto"/> | |
36 | + <ColumnDefinition/> | |
37 | + </Grid.ColumnDefinitions> | |
38 | + | |
39 | + <TextBlock Grid.Column="0" Text="タイトル :" Margin="3,3,3,3" VerticalAlignment="Center" Foreground="White"/> | |
40 | + <TextBox Grid.Column="1" Margin="3,3,3,3"/> | |
41 | + </Grid> | |
42 | + | |
43 | + <TextBox Grid.Row="3" TextWrapping="Wrap"/> | |
17 | 44 | </Grid> |
18 | 45 | </Window> |