2019/05/21

[C#] WPF Set App Window Full Screen

之前(這篇)有寫到怎麼抓螢幕的尺寸,為了讓App 可以在不同螢幕尺寸下都能保持全螢幕,可以用以下寫法。

[C#] WPF Get Screen Width and Height

double screen_h = System.Windows.SystemParameters.PrimaryScreenHeight;
double screen_w = System.Windows.SystemParameters.PrimaryScreenWidth;

2019/05/16

[Android] Set Full Screen

一般APP的畫面執行時,畫面上會包含裝置本身的狀態列。如果想要全螢幕顯示的話,這邊有個方法可以把狀態列隱藏起來。

2019/05/10

[Android] Get Current Time

從系統直接抓時間資訊,包含秒、分、時、日期、年份...等

2019/04/23

[Unity] Get Particle System Infomation

Start

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

[C#] WPF Keyboard Simulator

這篇用WPF 寫一個模擬Windows 鍵盤的APP。
其實關鍵就只是利用C# SendKeys 的功能而已(這篇有寫過)
但如果要寫一個完整模擬鍵盤的APP,會有些比較複雜的功能。

2018/12/13

[C#] Windows Keyboard Keycode

C#的語法中,如果要模擬輸入鍵盤的功能,可以用下面這行來做
SendKeys.Send("{ENTER}");

如果要輸入字母或數字,直接打對應的字串就好。
如果要輸入 windows (叫出桌面左下角的開始)圖示的按鍵,用組合字串"^" + "{esc}"
至於其他特殊符號或功能鍵,可以直接參考Keycode for C# (Reference)。
(記得把網頁切換到英文)。