1

是否可以隐藏 wpf 中的默认调整大小手柄,我有一个自定义窗口,侧面没有手柄,目前正在使用:

<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="100" Width="200" ResizeMode="CanResizeWithGrip">
    <Grid></Grid>
</Window>

我知道可以改变ResizeMode="CanResize",但这是我能想到的调整窗口大小的唯一方法。

4

1 回答 1

0

是的,您可以从窗口中取出默认的调整大小夹点。您需要覆盖 WindowTemplate。以下是您在 XAML 中的操作方式:

<Window x:Class="MyNamespace.MyWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        WindowStyle="None" 
        ResizeMode="CanResizeWithGrip"
        AllowsTransparency="True">
    <Window.Template>
        <ControlTemplate>
            <Border>

            </Border>
        </ControlTemplate>
    </Window.Template>
</Window>

在“边框”内将包含您需要在窗口中显示的所有内容(例如文本框)。然后,如果您想要自定义 ResizeGrip,您也可以定义它。希望这可以帮助。

于 2013-04-01T01:09:06.707 回答