You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i want it only can miniable. do not want it can resizable.
But 'SetResizable(true)' set this app can miniable and resizable too.
How can i set it only set miniable?
The text was updated successfully, but these errors were encountered:
@shinesheng On Windows, the default for a non-sizeable window is to not allow it to be minimized or maximized. So by default, those buttons are removed from the title bar. While it's possible to write code to add the minimize button back to the title bar, it would not be the default Windows behavior. You can still minimize (or maximize) the window programmatically. This varies a bit by operating system. On Linux for example, there are no minimize and maximize buttons at all. We would consider adding this to our backlog of enhancements, but it would not be a high priority. Our suggestion for a work-around is to allow the user to minimize the window from your UI and to do it programmatically.
@MikeYeager
The winform can set it prop ‘ControlBox’ equal false and it prop ‘title’ equal ‘’ to remove title bar.
Do PhotinoNET have any function to remove title bar? I can not find any function in class of PhotinoWindow to do it.
I want to make a new title that meet the work demands.
@shinesheng You can call .SetChromeless(true) to remove the title bar. Then you can create your own title bar in HTML/CSS/JavaScript and style it however you like.
i want it only can miniable. do not want it can resizable.
But 'SetResizable(true)' set this app can miniable and resizable too.
How can i set it only set miniable?
The text was updated successfully, but these errors were encountered: