想作一个时钟程序,在鼠标点击位置显示时间,但是怎么能在DrawString里显示DateTime.Now.toString 和datetime.today.tostring?            float x, y;
            x = MousePosition.X;
            y = MousePosition.Y;
            Font f = new Font("Times New Roman", 12,FontStyle.Regular);
            Graphics g = CreateGraphics();
            g.DrawString(time,f, Brushes.Black,x,y);
time处如何变成DateTime.Now.toString 和datetime.today.tostring?
是否要添加关于time的类或者方法?

解决方案 »

  1.   

    你怎么把这个time 传过来的
      

  2.   

    - -题目上给了一部分,最后就是要通过DrawString,显示当前的时间
      

  3.   

    抄个例子:
    using System;
     using System.Globalization; 
     
    public class MainClass { 
        public static void Main(string[] args)  {
            DateTime dt = DateTime.Now;
            String[] format = {
                "d", "D",
                "f", "F",
                "g", "G",
                "m",
                "r",
                "s",
                "t", "T",
                "u", "U",
                "y",
                "dddd, MMMM dd yyyy",
                "ddd, MMM d \"'\"yy",
                "dddd, MMMM dd",
                "M/yy",
                "dd-MM-yy",
            };
            String date;
            for (int i = 0; i < format.Length; i++) {
                date = dt.ToString(format[i], DateTimeFormatInfo.InvariantInfo);
                Console.WriteLine(String.Concat(format[i], " :" , date));
            }
      
       /** Output.
        *
        * d :08/17/2000
        * D :Thursday, August 17, 2000
        * f :Thursday, August 17, 2000 16:32
        * F :Thursday, August 17, 2000 16:32:32
        * g :08/17/2000 16:32
        * G :08/17/2000 16:32:32
        * m :August 17
        * r :Thu, 17 Aug 2000 23:32:32 GMT
        * s :2000-08-17T16:32:32
        * t :16:32
        * T :16:32:32
        * u :2000-08-17 23:32:32Z
        * U :Thursday, August 17, 2000 23:32:32
        * y :August, 2000
        * dddd, MMMM dd yyyy :Thursday, August 17 2000
        * ddd, MMM d "'"yy :Thu, Aug 17 '00
        * dddd, MMMM dd :Thursday, August 17
        * M/yy :8/00
        * dd-MM-yy :17-08-00
        */
        }
    }