本文介绍了WPF窗口样式未应用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有这个窗口:
I have this window:
<Window x:Class="YogevAfekaRAPAT.YNIDS.View.pleaseWaitWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
Title="please wait"
WindowStyle="None"
ResizeMode="NoResize">
<xctk:BusyIndicator Name="BusyIndicator" IsBusy="True" BusyContent="Please Wait..." >
</xctk:BusyIndicator>
</Window>
但由于某种原因窗口样式未被应用。
我不希望窗口看起来像一个窗口,但就像一个有繁忙指示器的小盒子
[]
推荐答案
这篇关于WPF窗口样式未应用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!