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

在XAML代码中导入名称空间

时间:2014-08-16 11:13:00      阅读:261      评论:0      收藏:0      [点我收藏+]

标签:http   使用   os   io   代码   html   htm   res   

使用如下的代码导入指定的名称空间。不仅导入了名称空间,而且还为该名称空间指定了一个前缀local,当然也可以指定为其他的前缀名,这个可自行定义。导入后,该名称空间的公开成员即可在当前XAML代码中使用了。比如示例中的TimeButton这个类,其实是个继承自按钮的自定义控件类。

<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代码中导入名称空间,布布扣,bubuko.com

在XAML代码中导入名称空间

标签:http   使用   os   io   代码   html   htm   res   

原文地址:http://blog.csdn.net/gjysk/article/details/38611169

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