Skip to content

Instantly share code, notes, and snippets.

@ochilab
Created September 16, 2016 06:40
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 ochilab/768095851452f76945705c2d85efbd0b to your computer and use it in GitHub Desktop.
Save ochilab/768095851452f76945705c2d85efbd0b to your computer and use it in GitHub Desktop.
WPFでのメニューバーの設置(XAML記述)
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition />
</Grid.RowDefinitions>
<Menu>
<MenuItem Header="ファイル" />
<MenuItem Header="編集" />
<MenuItem Header="ヘルプ">
<MenuItem IsCheckable="True" Header="info" />
</MenuItem>
</Menu>
</Grid>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment