0

How to prevent for resizing the user control in WPF. there is option for controling in windows control. Please help me on this.

demonplus
  • 5,613
  • 12
  • 49
  • 68
Sundar
  • 1
  • 4
    Possible duplicate of [How to disable resizing of user control in WPF](http://stackoverflow.com/questions/21306082/how-to-disable-resizing-of-user-control-in-wpf) – demonplus Oct 02 '15 at 14:07

1 Answers1

0

You can set the minWidth=MaxWidth=Some value and MinHeight=MaxHeight=somevalue. this should prevent re-sizing a control in wpf. You can access these properties in XAML.

Omar Zaarour
  • 302
  • 3
  • 9