Search
 
SCRIPT & CODE EXAMPLE
 

CSHARP

c# minimize form

this.WindowState = FormWindowState.Minimized;
Comment

c# minimize form



private void Form1_KeyPress(object sender, KeyPressEventArgs e)
{
     if(e.KeyChar == 'm')
         this.WindowState = FormWindowState.Minimized;
}


Comment

PREVIOUS NEXT
Code Example
Csharp :: count number of enum values C# 
Csharp :: how to load the active scene unity 
Csharp :: unity set mouse cursor lock 
Csharp :: unity scene load 
Csharp :: how to write hello world in c# 
Csharp :: c# open web page in default browser 
Csharp :: change border color of textfield in flutter 
Csharp :: net core get remote ip 
Csharp :: unity right click on gameobject 
Csharp :: check dotnet version command line 
Csharp :: asp.net core multiple get methods 
Csharp :: How to read SQL Server COUNT from SqlDataReader 
Csharp :: wpf label text in center 
Csharp :: unity reload scene 
Csharp :: c# write all bytes to a file 
Csharp :: c# AllowSynchronousIO to true 
Csharp :: get absolute url c# 
Csharp :: c# check if string is empty 
Csharp :: get string last character vb.net 
Csharp :: c# datetime current 
Csharp :: c# if debug 
Csharp :: unity add explosion force 
Csharp :: how to input a double in c# 
Csharp :: c# print out 
Csharp :: get all files in all subdirectories c# 
Csharp :: list add at index c# 
Csharp :: c# repeat string x times 
Csharp :: unity ui change sprite 
Csharp :: Unity Scene Load by Name 
Csharp :: discord bot time C# 
ADD CONTENT
Topic
Content
Source link
Name
1+7 =