c#改写的(vb.net)模拟时钟

 
ClockControl.cs

using System;
using System.Windows.Forms;
using System.Drawing;
using System.Drawing.Drawing2D;
namespace ClockTime
{
 /// <summary>
 /// ClockControl 的摘要说明。
 /// </summary>
 public class ClockControl:System.Windows.Forms.UserControl

 {
  private DateTime dt;

  public ClockControl()
  {
   //
   // TODO: 在此处添加构造函数逻辑
   //
   this.ResizeRedraw=true;
   this.Enabled=false;

  }
  public DateTime Time
  {
   set
   {
    Graphics grfx=this.CreateGraphics();
    Pen pn=new Pen(this.BackColor);
    InitializeCoordinates(grfx);
    if(dt.Hour!=value.Hour)
    {
     DrawHourHand(grfx,pn);
    }
    if(dt.Minute!=value.Minute)
    {
     DrawHourHand(grfx,pn);
     DrawMinuteHand(grfx,pn);
 
    }
    if(dt.Second!=value.Second)
    {
     DrawMinuteHand(grfx,pn);
     DrawSecondHand(grfx,pn);
    }
    if(dt.Millisecond!=value.Millisecond)
    {
     DrawSecondHand(grfx,pn);
    }
    dt=value;
    pn=new Pen(ForeColor);
    DrawHourHand(grfx,pn);
    DrawMinuteHand(grfx,pn);
    DrawSecondHand(grfx,pn);
    grfx.Dispose();
   }
   get
   {return dt;
   }
  }
  protected override  void OnPaint(PaintEventArgs e)
  {
   Graphics grfx=e.Graphics;
   Pen pn=new Pen(ForeColor);
   SolidBrush br=new SolidBrush(ForeColor);
   InitializeCoordinates(grfx);
   DrawDots(grfx,br);
   DrawHourHand(grfx,pn);
   DrawSecondHand(grfx,pn);
   DrawMinuteHand(grfx,pn);
  }
  protected virtual void InitializeCoordinates(Graphics grfx)
  {
   if(this.Width==0 || this.Height==0) return;
   grfx.TranslateTransform(this.Width/2,this.Height/2);
   Single fInches=Math.Min(this.Width/grfx.DpiX,this.Height/grfx.DpiY);
   grfx.ScaleTransform(fInches*grfx.DpiX/2000,fInches*grfx.DpiY/2000);

  }
  protected virtual  void  DrawDots(Graphics grfx ,Brush br)
  {
   int i,iSize;
   for(i=0;i<=59;i++)
   {
    if(i%5==0)
    {
     iSize=100;
    }
    else
     iSize=30;
    grfx.FillEllipse(br,0-iSize/2,-900-iSize/2,iSize,iSize);
    grfx.RotateTransform(6);

   }
  }
 protected virtual void  DrawHourHand(Graphics grfx,Pen pn)
  {
   GraphicsState gs=grfx.Save();
   grfx.RotateTransform(360.0F*Time.Hour/12+30.0F*Time.Minute/60);
   grfx.DrawPolygon(pn,new Point[]{new Point(0,150),new Point(100,0),new Point(0,-600),new Point(-100,0)});
   grfx.Restore(gs);
  }
protected virtual void  DrawMinuteHand(Graphics grfx,Pen pn)
  {
   GraphicsState gs=grfx.Save();
   grfx.RotateTransform(360.0F*Time.Minute/60+6.0F*Time.Second/60);
   grfx.DrawPolygon(pn,new Point[]{new Point(0,200),new Point(50,0),new Point(0,-800),new Point(-50,0)});
   grfx.Restore(gs);
  }
protected virtual void  DrawSecondHand(Graphics grfx,Pen pn)
  {
   GraphicsState gs=grfx.Save();
   grfx.RotateTransform(360.0F*Time.Second/60+6.0F*Time.Millisecond/1000);
   grfx.DrawLine(pn,0,0,0,-800);
   grfx.Restore(gs);
  
  }
 }
}

form1.cs

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using ClockTime;

namespace ClockTime
{
 /// <summary>
 /// Form1 的摘要说明。
 /// </summary>
 public class Form1 : System.Windows.Forms.Form
 {
  private System.ComponentModel.IContainer components;
  private System.Windows.Forms.Timer tmr;
 private ClockTime.ClockControl clkctrl;
  public Form1()
  {
   //
   // Windows 窗体设计器支持所必需的
   //
   InitializeComponent();

   //
   // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
   //
  }

  /// <summary>
  /// 清理所有正在使用的资源。
  /// </summary>
  protected override void Dispose( bool disposing )
  {
   if( disposing )
   {
    if (components != null)
    {
     components.Dispose();
    }
   }
   base.Dispose( disposing );
  }

  #region Windows 窗体设计器生成的代码
  /// <summary>
  /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  /// 此方法的内容。
  /// </summary>
  private void InitializeComponent()
  {
   this.components = new System.ComponentModel.Container();
   this.clkctrl = new ClockTime.ClockControl();
   this.tmr = new System.Windows.Forms.Timer(this.components);
   this.SuspendLayout();
   //
   // clkctrl
   //
   this.clkctrl.BackColor = System.Drawing.Color.Black;
   this.clkctrl.Dock = System.Windows.Forms.DockStyle.Fill;
   this.clkctrl.Enabled = false;
   this.clkctrl.ForeColor = System.Drawing.Color.White;
   this.clkctrl.Location = new System.Drawing.Point(0, 0);
   this.clkctrl.Name = "clkctrl";
   this.clkctrl.Size = new System.Drawing.Size(292, 273);
   this.clkctrl.TabIndex = 0;
   this.clkctrl.Time = new System.DateTime(2005, 6, 24, 10, 19, 26, 62);
   //
   // tmr
   //
   this.tmr.Enabled = true;
   this.tmr.Interval = 1000;
   this.tmr.Tick += new System.EventHandler(this.tmr_Tick);
   //
   // Form1
   //
   this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
   this.BackColor = System.Drawing.SystemColors.Window;
   this.ClientSize = new System.Drawing.Size(292, 273);
   this.Controls.Add(this.clkctrl);
   this.ForeColor = System.Drawing.SystemColors.WindowText;
   this.Name = "Form1";
   this.Text = "ClockControl";
   this.ResumeLayout(false);

  }
  #endregion

  /// <summary>
  /// 应用程序的主入口点。
  /// </summary>
  [STAThread]
  static void Main()
  {
   
   Application.Run(new Form1());
  }

  private void tmr_Tick(object sender, EventArgs e)
  {
  
   clkctrl.Time=DateTime.Now;
  }
 }
}

编译过程:

csc /t:library clockcontrol.cs

csc /t:winexe /r:clockcontrol.dll form1.cs

时间: 2024-11-05 12:26:48

c#改写的(vb.net)模拟时钟的相关文章

javascript实现模拟时钟的方法

  本文实例讲述了javascript实现模拟时钟的方法.分享给大家供大家参考.具体实现方法如下: ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta h

layout-把 android 的模拟时钟在最左边对齐

问题描述 把 android 的模拟时钟在最左边对齐 程序中有一个 xml 文件,要在左边显示一个模拟时钟,在它的右边显示日期和时间.现在我不能把时钟在左边对齐,如何实现? <?xml version="1.0" encoding="utf-8"?> <LinearLayout android:orientation="vertical" android:id="@+id/base_layout" andro

如何使用JFrame完成动态模拟时钟_java

这篇文章介绍了使用JFrame完成动态模拟时钟,在面板中绘制时钟并提取系统当前时刻,主方法中暂停线程1秒,刷新面板. 实现代码如下 import javax.swing.*; import java.awt.*; import java.util.*; import java.lang.Thread; import java.text.DecimalFormat; public class StillClock extends JPanel { /** * @param args */ priv

变换CALayer锚点实现模拟时钟的动画

变换CALayer锚点实现模拟时钟的动画   变换锚点得需要一点理论知识,看下图就能明白:). https://developer.apple.com/library/ios/documentation/Cocoa/Conceptual/CoreAnimation_guide/CoreAnimationBasics/CoreAnimationBasics.html#//apple_ref/doc/uid/TP40004514-CH2-SW15 开始实现模拟时钟效果: // // RootView

指针- vc6.0模拟时钟问题,两个循环无法同时运行

问题描述 vc6.0模拟时钟问题,两个循环无法同时运行 #include ""graphics.h""#include ""conio.h""#include ""time.h""#include ""math.h""int main(){int x0=400y0=200;int x1=0y1=0;int h=0;int m=0;int r=90;

android 时钟 卡顿-android模拟时钟 秒针卡顿(有时候秒针会不走,然后下一秒会跳动三个格子)

问题描述 android模拟时钟 秒针卡顿(有时候秒针会不走,然后下一秒会跳动三个格子) package custom.analog.clock; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import android.content.BroadcastReceiver; import android.content.res.Resourc

vb-求助 VB post 模拟提交页面问题

问题描述 求助 VB post 模拟提交页面问题 俺的代码 Dim myurl As String, send_data As String, my_head As String myurl = "http://jybox.net/user/join" send_data = "Confirm=w123456&email=cc@cc.com&password=w123456&submit=注册&token=bec8183e5bcdb&u

android 模拟时钟 手指触动旋转指针

问题描述 我想在android上实现一个模拟时钟,比如说只有一个时针(秒针,分针不要),怎么样可以用手指去触动那个指针,然后跟着手指旋转移动,有什么事件吗?谁能给点思路啊 问题补充:可是如何获取触电坐标啊,俺是新手,不会呢,忘指教,谢谢 解决方案 圆心位置你是知道的吧, 那么在 OnTouchListener 事件中,的MotionEvent.ACTION_DOWN: 来检测是否处于指针的位置,是的话,设个标志,当手指移动时,MotionEvent.ACTION_MOVE: 事件中来重画指针im

jquery 时间选择器 ClockPicker(模拟时钟)用法

最近项目中需要用到一个时间选择器,之前用到的 bootstrap-datetimepicker 在选择日期时蛮好用,但是它的时间选择(时:分)却有点别扭,后来发现 Android 上调闹铃时的选择器挺不错,于是决定自己开发一个类似的模拟时钟的时间选择器. 最开始只是打算做一个用于 Bootstrap 的组件,后来发现我只是用了 Bootstrap 的 .popover 和一些 .btn 的样式,于是我将这些样式取出来,让它同时支持单独作为一个 jQuery 插件. 先看看截图,使用过 Andro