首页 > Windows开发 > 详细

[WPF]学习笔记二---主窗体

时间:2015-11-05 07:38:05      阅读:325      评论:0      收藏:0      [点我收藏+]

昨晚上简单的化了下界面。现在还比较简陋。

单击事件的参用的有问题,

使用了页面引用。

技术分享

XAML

技术分享
<Window
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" x:Class="HpuShoots.UserUI"
        Title="摄影活动管理" Height="480" Width="640" Icon="shoots.ico">
    <Grid>
        <Grid x:Name="title" Margin="0,0,0,390">
            <Label Name="biaoti" Content="标题"></Label>    
        </Grid>
        <Grid x:Name="menu" Margin="0,60,512,0" >
            <Grid.RowDefinitions>
                <RowDefinition />
                <RowDefinition />
                <RowDefinition />
                <RowDefinition />
                <RowDefinition />
                <RowDefinition />
            </Grid.RowDefinitions>
            <Button Content="活动管理" Name="shoot" Grid.Row="0" Background="White" Click="Button_Click"></Button>
            <Button Content="部门成员" Name="memner" Grid.Row="1" Background="White" Click="Button_Click"></Button>
            <Button Content="资料下载" Name="download" Grid.Row="2" Background="White" Click="Button_Click"></Button>
            <Button Content="个人中心" Name="user" Grid.Row="3" Background="White" Click="Button_Click"></Button>
            <Button Content="关于" Name="about" Grid.Row="4" Background="White" Click="Button_Click"></Button>
        </Grid>
        <Grid x:Name="page" Margin="120,60,0,0" >
            <!--<Label Content="内容页"></Label>-->
           
                
                <Frame Name="property" Source="Page\ShootPage.xaml" NavigationUIVisibility="Hidden" >  </Frame>
               
           
        </Grid>
    </Grid>
</Window>
View Code

效果图

 

技术分享

[WPF]学习笔记二---主窗体

原文:http://www.cnblogs.com/yihy/p/4938108.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!