forked from microsoft/WinAppDriver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathControlExample.xaml.cs
More file actions
74 lines (66 loc) · 2.92 KB
/
ControlExample.xaml.cs
File metadata and controls
74 lines (66 loc) · 2.92 KB
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
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Markup;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;
// The User Control item template is documented at http://go.microsoft.com/fwlink/?LinkId=234236
namespace AppUIBasics.ControlPages
{
[ContentProperty(Name="Example")]
public sealed partial class ControlExample : UserControl
{
public static readonly DependencyProperty HeaderTextProperty = DependencyProperty.Register("HeaderText", typeof(string), typeof(ControlExample), new PropertyMetadata(null));
public string HeaderText
{
get { return (string)GetValue(HeaderTextProperty); }
set { SetValue(HeaderTextProperty, value); }
}
public static readonly DependencyProperty ExampleProperty = DependencyProperty.Register("Example", typeof(object), typeof(ControlExample), new PropertyMetadata(null));
public object Example
{
get { return GetValue(ExampleProperty); }
set { SetValue(ExampleProperty, value); }
}
public static readonly DependencyProperty XamlProperty = DependencyProperty.Register("Xaml", typeof(object), typeof(ControlExample), new PropertyMetadata(null));
public object Xaml
{
get { return GetValue(XamlProperty); }
set
{
if (value != null)
XamlBorder.Visibility = Visibility.Visible;
SetValue(XamlProperty, value);
}
}
public static readonly DependencyProperty ExampleHeightProperty = DependencyProperty.Register("ExampleHeight", typeof(GridLength), typeof(ControlExample), new PropertyMetadata(new GridLength(1, GridUnitType.Star)));
public GridLength ExampleHeight
{
get { return (GridLength)GetValue(ExampleHeightProperty); }
set { SetValue(ExampleHeightProperty, value); }
}
public new static readonly DependencyProperty HorizontalContentAlignmentProperty = DependencyProperty.Register("HorizontalContentAlignment", typeof(HorizontalAlignment), typeof(ControlExample), new PropertyMetadata(HorizontalAlignment.Left));
public new HorizontalAlignment HorizontalContentAlignment
{
get { return (HorizontalAlignment)GetValue(HorizontalContentAlignmentProperty); }
set { SetValue(HorizontalContentAlignmentProperty, value); }
}
public ControlExample()
{
this.InitializeComponent();
if (Xaml == null)
{
XamlBorder.Visibility = Visibility.Collapsed;
}
}
}
}