window窗口属性
属性 |
定义 |
属性值 |
注解 |
WindowStartupLocation | 获取或设置窗口首次显示时的位置。 | 一个 WindowStartupLocation 值,指定窗口首次显示时的顶边/左边位置。 默认值为 Manual。 |
将 将 将 |
Background | 设置窗口背景(背景透明度) | Background="Transparent" | |
FontFamily | 设置窗口字体 | FontFamily="Microsoft YaHei" | |
FontSize | 设置字体大小 | FontSize="12" | |
FontWeight | 字休加粗 | FontWeight="ExtraLight" | |
Title | 标题 | ||
Height | 高度 | ||
Width | 宽度 | ||
Name | 名称 |
<Window x:Class="cjh.Automatic.MainWindow" 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:cjh.Automatic" mc:Ignorable="d" WindowStartupLocation="CenterScreen" Background="Transparent" FontFamily="Microsoft YaHei" FontSize="12" FontWeight="ExtraLight" Title="自动化生产管理平台" Height="700" Width="1150" Name="windowMain"> <Grid> </Grid> </Window>
标签:窗口,Window,设置,WPF,属性,WindowStartupLocation From: https://www.cnblogs.com/stevenchen2016/p/17528990.html