Winform常用方法

2022-02-15 10:53:57 字數 1292 閱讀 7018

using system;

using system.collections.generic;

using system.text;

using system.windows.forms;

using system.reflection;

using system.threading;

namespace ebooktobbs

thread.sleep(10);}}

}///

/// 為richtextbox新增內容

///

///

///

///

///

public static void method(richtextbox rtb, string methodname)

///

/// 使用反射呼叫richtextbox的方法

///

///

///

public static void method(richtextbox rtb, string methodname, type typearr, parametermodifier paramodiferarr, params object args)

invoke(rtb, method, args);

}///

/// 呼叫某個例項的某個方法

///

/// 例項

/// 方法

/// 引數

public static void invoke(richtextbox rtb, methodinfo method, params object args)

), new object );

}else

}#region 獲取乙個型別的方法

///

/// 獲取乙個沒有引數的方法

///

///

///

///

public static methodinfo getmethod(type type, string name)

///

/// 獲取乙個有引數的方法

///

///

///

///

///

///

public static methodinfo getmethod(type type, string name, type typearr, parametermodifier paramodiferarr)

#endregion}}

winform 常用控制項

1.textbox 屬性 text 文字 selectedtext 獲或設定選中文字 canundo 是否能夠撤銷 passwordchar 替換字元實現密碼隱藏的效果 方法 undo 撤銷 clearundo 清空撤銷緩衝區 cut 剪下 copy 複製 paste 貼上 selectall 全選...

Web網頁呼叫Winform方法

通過修改winform啟動函式main方法的引數,實現傳參 main string args 應用程式的主入口點。stathread static void main string args else var form newform1 args form.windowstate formwindo...

C 中WinForm程式退出方法

1.this.close 只是關閉當前視窗,若不是主窗體的話,是無法退出程式的,另外若有託管執行緒 非主線程 也無法乾淨地退出 4.system.environment.exit 0 這是最徹底的退出方式,不管什麼執行緒都被強制退出,把程式結束的很乾淨。下面看一些例項 當我開啟乙個子窗體,進行某項操...