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.
Asked
Active
Viewed 169 times
1 Answers
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
-
No I should not do that....because i need to resize my window....for some needs.... – Venkatesan R Jul 01 '15 at 12:11