0

エアロスナップのデフォルト機能を有効にせずにウィンドウを使用したい....コントロールパネルからエアロスナップ機能を無効にすることでこれを行うことができます....しかし、特定のWPFウィンドウだけで無効にする必要があります。

4

1 に答える 1

0

確かに...Windowサイズを変更できないようにするだけです(それが本当の言葉である場合):

<Window x:Class="WpfApplication2.Views.Window1"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Window1" Height="300" Width="300" ResizeMode="NoResize">
    <Grid>
        <!-- Your content here -->
    </Grid>
</Window>
于 2015-05-07T13:05:26.067 に答える