Skip to content

Instantly share code, notes, and snippets.

@biac
Created December 9, 2012 02:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save biac/4243006 to your computer and use it in GitHub Desktop.
Save biac/4243006 to your computer and use it in GitHub Desktop.
カレンダー用のグリッドを描く
<Grid x:Name="CalendarGrid" Grid.Row="1" Margin="120,20,40,20" >
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1*" />
<ColumnDefinition Width="1*" />
<ColumnDefinition Width="1*" />
<ColumnDefinition Width="1*" />
<ColumnDefinition Width="1*" />
<ColumnDefinition Width="1*" />
<ColumnDefinition Width="1*" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="1*" />
<RowDefinition Height="1*" />
<RowDefinition Height="1*" />
<RowDefinition Height="1*" />
<RowDefinition Height="1*" />
<RowDefinition Height="1*" />
</Grid.RowDefinitions>
</Grid>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment