i have built application using c# , wpf. application has been launched , customers using it. now, issue.
in application, window's minimum height has been set 825 customer's screen resolution 1366 (width) x 768 (height). thus, customer not able see entire ui , thus, buttons not totally available user use due minimum height issue.
i know can reduce minimum height , put end involved releasing next update of application right? without doing this, how can release temporary fix users? way control application's window minimum height property external way (say through bat file or something).
have tried using * in height? auto match size of controls * gives remainder can use stretch
if have more 1 * definition each 1 proportions
e.g.
<grid> <grid.rowdefinitions> <rowdefinition height="50" /> <!-- header example <rowdefinition height="*" /> <!-- use whatever space left in parent control <rowdefinition height="50" /> <!-- close buttons etc </grid.rowdefinitions> </grid>
see managing application height in wpf (expressing height percentage of screen height) more info
Comments
Post a Comment