本文介绍了如何在WPF中的系统窗口中心添加标题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在窗口中心添加TITLE1234.
I want to add TITLE1234 on center of the window.
<window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xml:lang="en-US&"
xmlns:abc="clr-namespace:abc"
xmlns:d="http://schemas.microsoft.com/expression/blend/2006"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
xmlns:local="clr-namespace:abc"
x:Class="abc.Window1"
x:Name="Window"
Title="TITLE1234"
MinHeight="100"
MinWidth="200"
AllowsTransparency="False"
removed="Transparent"
Height="600"
Width="900"
WindowStyle="SingleBorderWindow"
Loaded="Window_Loaded"
ResizeMode="CanResize"
WindowStartupLocation="CenterScreen"
Icon="/abc;component/HIDexe.ico" PreviewKeyDown="Window_PreviewKeyDown"
MouseLeftButtonDown="Window_MouseDown"
>
</window>
推荐答案
这篇关于如何在WPF中的系统窗口中心添加标题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!