csharp 【WPF】DataGrid中のサンプル

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 【WPF】DataGrid中のサンプル相关的知识,希望对你有一定的参考价值。

<Window x:Class="DataGridTips.Window1"
		xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
		xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
		xmlns:ToolKit="http://schemas.microsoft.com/wpf/2008/toolkit"
		xmlns:local="clr-namespace:DataGridTips" 
		Title="Window1" Height="300" Width="300">

	<Window.Resources>
		<x:Array x:Key="BookData" Type="local:Book">
			<local:Book BookName="週刊マイクロソフト" InStock="True" Location="新宿" BookInfo="http://www.microsoft.com" />
			<local:Book BookName="マイクロソフト入門" InStock="False" Location="初台" BookInfo="http://www.microsoft.com" />
		</x:Array>
	</Window.Resources>

	<Grid>
		<ToolKit:DataGrid Grid.Row="0" Margin="5" ItemsSource="{StaticResource BookData}"/>
	</Grid>
</Window>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace DataGridTips
{
	/// <summary> 
	/// 店舗リスト 
	/// </summary> 
	public enum ShopList
	{
		新宿,
		初台,
		大手町,
		赤坂,
		代田橋,
		調布
	}

	/// <summary> 
	/// エンティティクラス(書籍情報) 
	/// </summary> 
	public class Book
	{
		public string BookName { get; set; }
		public bool InStock { get; set; }
		public ShopList Location { get; set; }
		public Uri BookInfo { get; set; }
	} 
}

以上是关于csharp 【WPF】DataGrid中のサンプル的主要内容,如果未能解决你的问题,请参考以下文章

csharp Dapper .NETのサンプル

csharp MEF属性ベースのサンプル

xml 【WPF】的TreeViewのサンプル。

xml WPFの的BackgroundWorkerのサンプル

csharp System.Collections.Concurrent.BlockingCollectionのサンプル

csharp 【C#】フラグ列挙子のサンプル