2
How is it possible to make a change in the size of a Form(Window) in WPF, by changing its Heigth and Width and thus increasing and decreasing the screen according to the reported values? For example: I have a button (Increase Screen) and when the event refeeds to that button a function takes place
button_click(){
Form.Width = NovoValor;
Form.Heigth= NovoValor;
}
I believe the right commands are:
Form.Left
,Form.Top
, and so it goes.– Francisco
@Francisco This defines position, not size.
– Jéf Bueno