WPF

XAML基础

2019-10-11  本文已影响0人  落地成佛

一、概述

WPF前端采用XAML标记语言,XAML比以前的Winform控件模式益处在于前后端分离,丰富的UI

二、基础介绍

2.1 xmls名称空间

2.1.1 xmlns概述

//新建WPF后默认生成的XAML页面如下:
<Window x:Class="WpfApplication1.MainWindow"//后台代码cs文件
        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"
        xmlns:local="clr-namespace:WpfApplication1"
        mc:Ignorable="d"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
    </Grid>
</Window>

2.1.2 presentation名称空间详细

2.1.3 x名称空间详细

图片.png
上一篇下一篇

猜你喜欢

热点阅读