码迷,mamicode.com
首页 > 其他好文 > 详细

于XAML导入命名空间的代码

时间:2015-10-14 14:13:18      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:

例如,下面的代码到指定的命名空间。不仅导入的命名空间,并且还为指定的命名空间前缀local。当然,你也可以指定一个前缀为另一个名称,这可以定义。导入后,市民可以在命名当前空间XAML使用代码。例如,在演示样品TimeButton这个类,事实上,它是从继承button控件类。

<Window x:Class="Demo002.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:local="clr-namespace:Demo002"
        Title="MainWindow" Height="350" Width="525">
    <Grid x:Name="Grid1">
        <Grid x:Name="Grid2">
            <Grid x:Name="Grid3">
                <StackPanel x:Name="StackPanel1">
                    <ListBox x:Name="ListBox1" />
                    <local:TimeButton x:Name="TimeButton1" Width="80" Height="80" 
                                      Content="Report Time" />
                </StackPanel>
            </Grid>
        </Grid>
    </Grid>
</Window>


版权声明:本文博主原创文章,博客,未经同意不得转载。

于XAML导入命名空间的代码

标签:

原文地址:http://www.cnblogs.com/bhlsheji/p/4877141.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!