added samples
[windows-sources.git] / sdk / samples / WPFSamples / ListViewCustomView / csharp / myview.cs
blobb3581cc693a3a950708821467cf43c581eedb9fa
1 using System;
2 using System.Windows;
3 using System.Windows.Controls;
4 using System.Windows.Controls.Primitives;
5 using System.Windows.Data;
6 using System.Globalization;
7 using System.ComponentModel;
8 using System.Windows.Media;
9 using System.Windows.Shapes;
10 using System.Xml;
12 namespace SDKSample
14 public class CoolView : ViewBase
16 protected override object DefaultStyleKey
18 get
20 return new ComponentResourceKey(this.GetType(), "MyViewDSK");
24 protected override object ItemContainerDefaultStyleKey
26 get
28 return new ComponentResourceKey(this.GetType(), "MyViewItemDSK");