这个命名空间存放的就是XAML和XAML编译器沟通的东西,比如编译时与那个C#代码合并等
一、 在XAML中出现的方式有三种
1.标签扩展: x:Array, x:Null, x:Static, x:Type
2. XAML指令元素: x:Code, x:XData
3. Attribute: x:Class, x:ClassModifier, x:FieldModifier, x:Key, x:Name, x: Shared, X:Subclass, x:TypeArguments, x:Uid.
二、详解
x:Class:告诉XAML编译器将XAML标签的编译结果与后台制定的类合并,这个类必须使用partial关键字。
x:ClassModifier:告诉生成的类的访问级别,标签必须具有x:Class Attribute.
x:Name: XAML标签对应着一个对象。告诉XAML编译器为这个标签生成对应实例外还要为这个实例声明一个引用变量,变量名是x:Name的值,把
XAML标签对应对象的Name属性也设为x:Name的值,并把这个值注册到UI树上,方便查找。
x:FieldModifier: 是用来改变引用变量访问级别的,很显然,需要和x:Name同时使用。
x:Key: 把东西存放到资源字典Resource Dictionary里的Key,检索时用这个Key
x:Shared: 是否检索对象时使用同一个还是副本,比如前所资源字典里的内容。
x:Null: 清除一些设置,比如全局style设置的Button样式,某个Button不想用,可以使用Style=”{x:Null}”.
x:Array:
01 |
<Window x:Class= "DeepXAML.MainWindow"
|
03 |
xmlns:x= "http://schemas.microsoft.com/winfx/2006/xaml"
|
04 |
xmlns:local= "clr-namespace:DeepXAML"
|
05 |
xmlns:sys= "clr-namespace:System;assembly=mscorlib"
|
06 |
Title= "MainWindow" Height= "350" Width= "525" >
|
07 |
<Grid>
|
08 |
<ListBox Margin= "5" >
|
09 |
<ListBox.ItemsSource>
|
10 |
<x:Array Type= "sys:String" >
|
11 |
<sys:String>Jack</sys:String>
|
12 |
<sys:String>Justin</sys:String>
|
13 |
<sys:String>David</sys:String>
|
14 |
</x:Array>
|
15 |
</ListBox.ItemsSource>
|
16 |
</ListBox>
|
17 |
</Grid>
|
18 |
</Window> |
x:Static: 在XAML中使用数据类型的静态成员。
1 |
public partial class MainWindow : Window
|
2 |
{ |
3 |
public static string Description = "Hello World" ;
|
4 |
public MainWindow()
|
5 |
{
|
6 |
InitializeComponent();
|
7 |
}
|
8 |
} |
01 |
<Window x:Class= "DeepXAML.MainWindow"
|
03 |
xmlns:x= "http://schemas.microsoft.com/winfx/2006/xaml"
|
04 |
xmlns:local= "clr-namespace:DeepXAML" |
05 |
Title= "MainWindow" Height= "350" Width= "525" >
|
06 |
<Grid>
|
07 |
<StackPanel>
|
08 |
<TextBlock FontSize= "20" Text= "{x:Static local:MainWindow.Description}" ></TextBlock>
|
09 |
</StackPanel>
|
10 |
</Grid>
|
11 |
</Window> |