WPF Window 窗口 常用属性

window窗口属性

|---------------------------|----------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| ## 属性 | ## 定义 | ## 属性值 | ## 注解 |
| WindowStartupLocation | 获取或设置窗口首次显示时的位置。 | 一个 WindowStartupLocation 值,指定窗口首次显示时的顶边/左边位置。 默认值为 Manual。 | 将 WindowStartupLocation 属性设置为 Manual 使窗口按其 LeftTop 属性值定位。 Left如果未指定或Top属性,则其值由Windows确定。 将 WindowStartupLocation 属性设置为 CenterScreen 使窗口定位在包含鼠标光标的屏幕中心。 将 WindowStartupLocation 属性设置为 CenterOwner 使窗口定位在其所有者窗口的中心 , (如果指定,则会看到 Window.Owner) 。 所有者窗口可以是另一个 WPF 窗口或非 WPF 窗口。 |
| Background | 设置窗口背景(背景透明度) | Background="Transparent" | |
| FontFamily | 设置窗口字体 | FontFamily="Microsoft YaHei" | |
| FontSize | 设置字体大小 | FontSize="12" | |
| FontWeight | 字休加粗 | FontWeight="ExtraLight" | |
| Title | 标题 | | |
| Height | 高度 | | |
| Width | 宽度 | | |
| Name | 名称 | | |
| WindowChrome.WindowChrome | 获取或设置附加到窗口的 WindowChrome 的实例。 | | |

复制代码
<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="XX管理平台" Height="700" Width="1150" Name="windowMain">
    <WindowChrome.WindowChrome>
        <WindowChrome GlassFrameThickness="-1" />
    </WindowChrome.WindowChrome>
    <Grid>
        <Grid.Background>
            <RadialGradientBrush>
                <GradientStop Color="#FF285173" Offset="0" />
                <GradientStop Color="#FF244967" Offset="0.3" />
                <GradientStop Color="#FF14273A" Offset="1" />
            </RadialGradientBrush>
        </Grid.Background>
        <Grid.RowDefinitions>
            <RowDefinition Height="45"/>
            <RowDefinition />
            <RowDefinition Height="20"/>
        </Grid.RowDefinitions>
    </Grid>
</Window>
相关推荐
大霸王龙1 天前
系统模块与功能设计框架
人工智能·wpf
明耀2 天前
WPF DataGrid 默认显示行号
wpf
lph19722 天前
wpf的converter
wpf
fyifei05582 天前
WPF学习PropertyChanged
wpf
爱炸薯条的小朋友2 天前
C#由于获取WPF窗口名称造成的异常报错问题
windows·c#·wpf
baivfhpwxf20232 天前
wpf ListBox 去除item 单击样式
wpf
诗仙&李白2 天前
lnnovationHubTool,用prism+WPF编写的MVVM模式的快速上位机软件开发框架平台
wpf·mvvm·prism·上位机软件开发框架平台
程序员小刘2 天前
【HarmonyOS 5】教育开发实践详解以及详细代码案例
华为·wpf·harmonyos
Java Fans3 天前
在WPF项目中集成Python:Python.NET深度实战指南
python·.net·wpf
布伦鸽3 天前
C# WPF 左右布局实现学习笔记(1)
笔记·学习·c#·wpf