之前(這篇)有寫到怎麼抓螢幕的尺寸,為了讓App 可以在不同螢幕尺寸下都能保持全螢幕,可以用以下寫法。
My Coding Room
2019/05/21
[C#] WPF Get Screen Width and Height
double screen_h = System.Windows.SystemParameters.PrimaryScreenHeight; double screen_w = System.Windows.SystemParameters.PrimaryScreenWidth;
2019/05/16
2019/05/10
2019/04/23
[Unity] Get Particle System Infomation
Start
END
private ParticleSystem mParticle; private ParticleSystem.MainModule mParticleMainModule; void Start() { mParticle = new ParticleSystem(); mParticle = gameObject.transform.GetChild(0).gameObject.GetComponent<Particlesystem>(); mParticleMainModule = new ParticleSystem.MainModule(); mParticleMainModule = mParticle.main; } void Update() { mParticleMainModule.maxParticles = 100; mParticleMainModule.startSize = 0.3f; }
END
2018/12/17
2018/12/13
[C#] Windows Keyboard Keycode
C#的語法中,如果要模擬輸入鍵盤的功能,可以用下面這行來做
如果要輸入字母或數字,直接打對應的字串就好。
如果要輸入 windows (叫出桌面左下角的開始)圖示的按鍵,用組合字串"^" + "{esc}"
至於其他特殊符號或功能鍵,可以直接參考Keycode for C# (Reference)。
(記得把網頁切換到英文)。
SendKeys.Send("{ENTER}");
如果要輸入字母或數字,直接打對應的字串就好。
如果要輸入 windows (叫出桌面左下角的開始)圖示的按鍵,用組合字串"^" + "{esc}"
至於其他特殊符號或功能鍵,可以直接參考Keycode for C# (Reference)。
(記得把網頁切換到英文)。
訂閱:
文章 (Atom)