控制WPF中的“窗口外/铬合金”

时间:2009-04-30 06:36:30

标签: wpf google-chrome

有没有办法在WPF中使用Window / Chrome(即Aero的玻璃)“控制/图像/等”?

我的意思是WPF Yahoo Messenger一段时间后被释放(然后停止)。 WindowStyle看起来像是设置为None,但AllowTransparencies / CanResize分别设置为false / true - 并且化身略微“窗外/铬合金”。

我知道我可以创建我自己的玻璃边框,但这可能需要付出相当大的努力才能使其看起来一致。

1 个答案:

答案 0 :(得分:3)

是的,我相信您必须用自己的界面替换窗口的界面。您可以从透明窗口和网格开始,在网格周围留下一些边距。然后在网格上放置拇指,标题栏等来模拟窗口行为。网格周围的边距允许您在“窗口”之外绘制控件。

<Window
x:Class="TransparentFormDemo.Window2"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window2" Height="300" Width="300"
AllowsTransparency="True"
WindowStyle="None" Background="Transparent">
<Grid Margin="20" Background="AliceBlue">
    <Thumb Name="topThumb" Height="5" HorizontalAlignment="Stretch" VerticalAlignment="Top"
           DragDelta="topThumb_DragDelta" Cursor="SizeNS"/>
    <!--Thumbs continued-->
    <Polygon Points="10,110 60,10 110,110" Fill="Blue" Margin="0,-30"/>
</Grid>
</Window>