0

I would like to use the window without enabling the default feature of aero snapping....i could do this by disabling the aero snap feature from the control panel....but i need to disable it for specific WPF Window alone.

1 Answers1

0

Sure... just make the Window un-resizable (if that is a real word):

<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>
Sheridan
  • 68,826
  • 24
  • 143
  • 183