c#小程序時鐘源碼Word版

上傳人:每**** 文檔編號:50897828 上傳時間:2022-01-23 格式:DOC 頁數(shù):31 大?。?8KB
收藏 版權(quán)申訴 舉報 下載
c#小程序時鐘源碼Word版_第1頁
第1頁 / 共31頁
c#小程序時鐘源碼Word版_第2頁
第2頁 / 共31頁
c#小程序時鐘源碼Word版_第3頁
第3頁 / 共31頁

下載文檔到電腦,查找使用更方便

0 積分

下載資源

還剩頁未讀,繼續(xù)閱讀

資源描述:

《c#小程序時鐘源碼Word版》由會員分享,可在線閱讀,更多相關(guān)《c#小程序時鐘源碼Word版(31頁珍藏版)》請在裝配圖網(wǎng)上搜索。

1、 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace 時o?à鐘¨? { 推薦精選 public partial class Form1 : Form { //指?針?坐á?標à¨o private sta

2、tic float hour_x = 0, hour_y = 0; private static float minute_x = 0, minute_y = 0; private static float second_x = 0, second_y = 0; 推薦精選 private float radii = 200; //將?角?度¨¨轉(zhuǎn)áa成¨|弧?度¨¨ 2 * 3.1415926 / 360 = 0.01745329 const float radian = 0.01745329F

3、; public Form1() { 推薦精選 InitializeComponent(); //指?定?§當ì?à窗???口¨2大?¨?小?改?變à?時o?à重?繪?整?個?窗???口¨2 this.SetStyle(ControlStyles.ResizeRedraw, true); } 推薦精選 private void Form1_Load(object sender, Ev

4、entArgs e) { //創(chuàng)???建?§定?§時o?à器??對?象¨? Timer timer = new Timer(); //啟?動?¥定?§時o?à器?? timer.Start(); //設(shè)|¨¨定?§定?§時o?à器??事o?件t的ì?觸?£¤發(fā)¤?é函?¥數(shù)oy 推薦精選 timer.Tick += new EventHandler(TickEvent); //設(shè)|¨¨定?§

5、定?§時o?à器??的ì?間?隔?時o?à間?為a 1000 毫¨¢秒? timer.Interval = 1000; 推薦精選 } protected override void OnPaint(PaintEventArgs e) { base.OnPaint(e); //創(chuàng)???建?§畫-刷?é,ê?并?é設(shè)|¨¨定?§畫-刷?é的ì?顏?色|? 推薦精選 SolidBrush brus

6、h = new SolidBrush(Color.FromArgb(255, 0, 255)); Pen pen = new Pen(Color.Black); //得ì?到ì?窗???口¨2長?è寬¨a兩¢?邊à?最á?短¨?的ì?一°?邊à?,作á??為a圓2的ì?外aa切D矩?形?的ì?邊à?長?è radii = 推薦精選 this.ClientRectangle.Width < this.ClientRectangle.Height ? this.ClientRectangle.Width

7、 : this.ClientRectangle.Height; radii -= 10; //把??窗???口¨2的ì?原-點ì?移°?到ì?新?坐á?標à¨o 推薦精選 e.Graphics.TranslateTransform(this.ClientRectangle.Width / 2 - radii / 2, this.ClientRectangle.Height / 2 - radii / 2); //

8、畫-圓2 e.Graphics.DrawEllipse(pen, 0, 0, radii, radii); //時o?à鐘¨?刻¨?度¨¨坐á?標à¨o 推薦精選 float x = 0.00F, y = 0.00F; //畫-出?時o?à鐘¨?的ì?刻¨?度¨¨ for (float i = 0.00F; i < 360; i += 6.00F) { x = (flo

9、at)(radii / 2-6) * (float)Math.Sin(i * radian); 推薦精選 y = (float)(radii / 2-6) * (float)Math.Cos(i * radian); if ((int)i % 30 == 0) e.Graphics.FillEllipse(brush, x + radii / 2 - 4, y + radii / 2 - 4, 8, 8); else

10、 e.Graphics.FillEllipse(brush, x + radii / 2 - 2, y + radii / 2 - 2, 4, 4); 推薦精選 } // 畫-實o|ì心?圓2形?,ê?new SolidBrush(Color.Black) 是o?創(chuàng)???建?§畫-刷?é e.Graphics.FillEllipse(new SolidBrush(Color.Black), radii / 2 - 5, radii / 2 - 5, 10, 10); 推薦精選

11、 e.Graphics.Dispose(); } public void TickEvent(object sender,EventArgs e) { //創(chuàng)???建?§畫-板??對?象¨? Graphics g = this.CreateGraphics(); //指?定?§新?原-點ì? 推薦精選 g.TranslateTransform(this.ClientRectangle.Width / 2,

12、 this.ClientRectangle.Height / 2); //創(chuàng)???建?§畫-筆à¨o,并?é設(shè)|¨¨定?§顏?色|? Pen pen = new 推薦精選 Pen(Color.FromArgb(0,255,0)); float radii2 = radii / 2 - 6; //利¤?用??背à3景??色|?擦¨¢除y原-來¤??的ì?指?針? pen.Color = Color.FromArgb(2

13、55, 255, 255); g.DrawLine(pen, 0, 0, hour_x, -hour_y); 推薦精選 g.DrawLine(pen, 0, 0, minute_x, -minute_y); g.DrawLine(pen, 0, 0, second_x, -second_y); //畫-出?時o?à針? int hour = DateTime.Now.Hour > 12 ? DateTime.Now.Hour -

14、 12 : 推薦精選 DateTime.Now.Hour; hour_x = (float)(radii2 - 70) * (float)Math.Sin((hour * 30 + DateTime.Now.Minute * (30f / 60f)) * radian); hour_y = (float)(radii2 - 70) * (float)Math.Cos((hour * 30 + DateTime.Now.Minute * (30f / 60f)) * radian); pen.Color =

15、Color.FromArgb(0, 255, 0); 推薦精選 g.DrawLine(pen, 0, 0, hour_x, -hour_y); //畫-出?分¤?針? minute_x = (float)(radii2-30) * (float)Math.Sin(DateTime.Now.Minute * 6 * radian); minute_y = (float)(radii2-30) * ( 推薦精選 float)Math.Cos(DateT

16、ime.Now.Minute * 6 * radian); pen.Color = Color.FromArgb(0, 0, 255); g.DrawLine(pen, 0, 0, minute_x, -minute_y); //畫-出?秒?針? second_x = ( 推薦精選 float)(radii2-8) * (float)Math.Sin(DateTime.Now.Second * 6 * radian); sec

17、ond_y = (float)(radii2-8) * (float)Math.Cos(DateTime.Now.Second * 6 * radian); pen.Color = Color.FromArgb(0, 255, 255); g.DrawLine(pen, 0, 0, second_x, -second_y); 推薦精選 g.Dispose(); } } } 到下面的網(wǎng)站去看也可以看到c#小程序代碼 (注:可編輯下載,若有不當之處,請指正,謝謝!) 推薦精選

展開閱讀全文
溫馨提示:
1: 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
2: 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
3.本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
5. 裝配圖網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

相關(guān)資源

更多
正為您匹配相似的精品文檔

相關(guān)搜索

關(guān)于我們 - 網(wǎng)站聲明 - 網(wǎng)站地圖 - 資源地圖 - 友情鏈接 - 網(wǎng)站客服 - 聯(lián)系我們

copyright@ 2023-2025  zhuangpeitu.com 裝配圖網(wǎng)版權(quán)所有   聯(lián)系電話:18123376007

備案號:ICP2024067431-1 川公網(wǎng)安備51140202000466號


本站為文檔C2C交易模式,即用戶上傳的文檔直接被用戶下載,本站只是中間服務(wù)平臺,本站所有文檔下載所得的收益歸上傳人(含作者)所有。裝配圖網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對上載內(nèi)容本身不做任何修改或編輯。若文檔所含內(nèi)容侵犯了您的版權(quán)或隱私,請立即通知裝配圖網(wǎng),我們立即給予刪除!