-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathFastGridControl_DependencyProps.cs
85 lines (64 loc) · 3 KB
/
FastGridControl_DependencyProps.cs
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace FastWpfGrid
{
partial class FastGridControl
{
#region property Model
public IFastGridModel Model
{
get { return (IFastGridModel) this.GetValue(ModelProperty); }
set { this.SetValue(ModelProperty, value); }
}
public static readonly DependencyProperty ModelProperty = DependencyProperty.Register(
"Model", typeof (IFastGridModel), typeof (FastGridControl), new PropertyMetadata(null, OnModelPropertyChanged));
private static void OnModelPropertyChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs e)
{
((FastGridControl) dependencyObject).OnModelPropertyChanged();
}
#endregion
#region property IsTransposed
public bool IsTransposed
{
get { return (bool)this.GetValue(IsTransposedProperty); }
set { this.SetValue(IsTransposedProperty, value); }
}
public static readonly DependencyProperty IsTransposedProperty = DependencyProperty.Register(
"IsTransposed", typeof(bool), typeof(FastGridControl), new PropertyMetadata(false, OnIsTransposedPropertyChanged));
private static void OnIsTransposedPropertyChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs e)
{
((FastGridControl)dependencyObject).OnIsTransposedPropertyChanged();
}
#endregion
#region property UseClearType
public bool UseClearType
{
get { return (bool)this.GetValue(UseClearTypeProperty); }
set { this.SetValue(UseClearTypeProperty, value); }
}
public static readonly DependencyProperty UseClearTypeProperty = DependencyProperty.Register(
"UseClearType", typeof(bool), typeof(FastGridControl), new PropertyMetadata(true, OnUseClearTypePropertyChanged));
private static void OnUseClearTypePropertyChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs e)
{
((FastGridControl)dependencyObject).OnUseClearTypePropertyChanged();
}
#endregion
#region property AllowFlexibleRows
public bool AllowFlexibleRows
{
get { return (bool)this.GetValue(AllowFlexibleRowsProperty); }
set { this.SetValue(AllowFlexibleRowsProperty, value); }
}
public static readonly DependencyProperty AllowFlexibleRowsProperty = DependencyProperty.Register(
"AllowFlexibleRows", typeof(bool), typeof(FastGridControl), new PropertyMetadata(false, OnAllowFlexibleRowsPropertyChanged));
private static void OnAllowFlexibleRowsPropertyChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs e)
{
((FastGridControl)dependencyObject).OnAllowFlexibleRowsPropertyChanged();
}
#endregion
}
}