forked from dnSpy/ICSharpCode.TreeView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSharpGridView.cs
More file actions
31 lines (27 loc) · 752 Bytes
/
SharpGridView.cs
File metadata and controls
31 lines (27 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Controls;
using System.Windows;
namespace ICSharpCode.TreeView
{
public class SharpGridView : GridView
{
static SharpGridView()
{
ItemContainerStyleKey =
new ComponentResourceKey(typeof(SharpTreeView), "GridViewItemContainerStyleKey");
}
public static ResourceKey ItemContainerStyleKey { get; private set; }
protected override object ItemContainerDefaultStyleKey
{
get
{
return ItemContainerStyleKey;
}
}
}
}