用c#製作有提示窗體的日程管理器
以下為主窗體**:
using system;
using system.drawing;
using system.collections;
using system.componentmodel;
using system.windows.forms;
using system.data;
using system.timers;
using system.data.oledb;
namespace calendar
///
/// 清理所有正在使用的資源。
///
protected override void dispose( bool disposing )
}base.dispose( disposing );
}#region windows 窗體設計器生成的**
///
/// 設計器支援所需的方法 - 不要使用**編輯器修改
/// 此方法的內容。
///
}#endregion
///
/// 應用程式的主入口點。
///
private void tabcontrol1_selectedindexchanged(object sender, system.eventargs e)
private void button2_click(object sender, system.eventargs e)
private void first_click(object sender, system.eventargs e)
private void textbox1_textchanged(object sender, system.eventargs e)
private void select()
private void button3_click(object sender, system.eventargs e)
else}}
}以下為提示窗體**:
using system;
using system.drawing;
using system.collections;
using system.componentmodel;
using system.windows.forms;
namespace calendar
///
/// 清理所有正在使用的資源。
///
protected override void dispose( bool disposing )
}base.dispose( disposing );
}#region windows 窗體設計器生成的**
///
/// 設計器支援所需的方法 - 不要使用**編輯器修改
/// 此方法的內容。
///
private void initializecomponent()
#endregion
private string info;//設定提示窗體的內容;
public string info
get}
private int heightmax, widthmax;//設定窗體顯示的大小的屬性
public int heightmax
get}
public int widthmax
get}
public void scrollshow()
public int staytime = 5000;//窗體的停留時間
//窗體的滾出與滾入方法
private void scrollup()
else
}private void scrolldown()
else
}private void clew_load(object sender, system.eventargs e)
private void timer1_tick(object sender, system.eventargs e)}}
//由於是從vs2003下編的所以這些**不能直接執行,但可以提供乙個思路,另外還可以加個托盤圖示或,其他小功能。
C 簡單檔案管理器的實現
using system using system.collections.generic using system.componentmodel using system.data using system.drawing using system.io using system.text usi...
用C 遮蔽系統熱鍵(包括禁止使用任務管理器)
一般來說會用到hook 鉤子 即獲取系統的按鍵或者滑鼠動作,然後在系統響應之前執行自定義動作,或者直接截斷這個訊息,這就是遮蔽系統熱鍵的原理了。首先要呼叫作業系統的dll檔案,先引入命名空間 using system.runtime.interopservices 呼叫作業系統動態鏈結庫的方法 dl...
C 編寫簡單的系統服務管理器
從網上看到了一段關於服務列舉的文章,於是做了做搬家的工作,基本是照搬了,練手而已,路過看客切勿砸磚。程式截圖 如下 1using system 2using system.windows.forms 3using system.serviceprocess 4using system.collect...