WPF UserControl在运行的时候外面有边框
在Blend设计中已经把所有背景东西全给去掉了,但运行之后,UserControl还是会显示一个像Winform一样的边框,还有白色底色,怎么能解决这个问题呢,我找遍了Blend中UserControl所有的属性也没有一个去掉边框的,Winform人家还有一个none,WPF直接都没有,望高手指点!
[解决办法]
问题不在UserControl
找到最顶层的window 加入以下属性:
AllowsTransparency="True" Background="Transparent" WindowStyle="None"