ソース掲示板




すべてから検索

キーワード   条件 表示 現行ログ 過去ログ トピックス 名前 本文

  メンテナンス 前画面に戻る

対象スレッド 件名: 画面定義
名前: lightbox
処理選択
パスワード

件名 画面定義
名前 lightbox
コメント
@SHOW
https://lh3.googleusercontent.com/-tO9ZH2s5s2g/WSOzpultvkI/AAAAAAAAkgw/HG255sBOu7s6idwc_61z6EklQAkTGcHYwCHM/s568/_img.png

タイトルをクリックするとソートされます
@END

@DIV
<Window
	x:Class="WpfApplication1.MainWindow"
	xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
	Title="MainWindow"
	Height="430.769"
	Width="581.953">
	<Grid>
		<Button
			Content="Button"
			HorizontalAlignment="Left"
			Height="24"
			Margin="27,29,0,0"
			VerticalAlignment="Top"
			Width="122"
			Click="Button_Click_1" />
		<DataGrid
			@c:red(x:Name="dataGrid")
			HorizontalAlignment="Left"
			Height="288"
			Margin="27,78,0,0"
			VerticalAlignment="Top"
			Width="516"
			@c:red(ItemsSource="{Binding}")
			@c:red(IsReadOnly="True")
			MouseDoubleClick="dataGrid_MouseDoubleClick" />

	</Grid>
</Window>

@END