资源简介
桌面时间,鼠标左键单击计时、右键复位、倒计时
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Collections; //阴历转换
using System.Globalization; //阴历转换
using System.Runtime.InteropServices;
namespace 桌面日历
{
// string str = string.Format(“旦:{0}\n{1} {2}“ GetYear(dt) GetMonth(dt) GetDay(dt)); //字符串格式化
public partial class Form1 : Form
{
////////////设置窗口置顶///////////////
[DllImport(“user32.dll“ CharSet = CharSet.Auto)]
private static extern int SetWindowPos(IntPtr hWnd int hWndInsertAfter int x int y int Width int Height int flags);
////////////////////////////////////////
DateTime datetime0datetime2;
int xiaoshi fenzhong miaozhong haomiao;
int starttimepasstimealltime;
int width0 height0;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender EventArgs e)
{
//timer2.Interval = 5;
passtime = 0;
datetime0 = DateTime.Now;
alltime = (int)(DateTime.Now - datetime0).TotalMilliseconds; //程序运行时间
starttime = alltime - passtime;
width0 = this.Width;
height0 = this.Height;
this.StartPosition = FormStartPosition.Manual; //位置设为手动
this.Location = new Point(200 10); //窗口起始位置 (point)new Size(xy);
label6.ForeColor = Color.FromArgb(2550255);
qingling();
SetWindowPos(this.Handle -1 0 0 0 0 1 | 2); //设置窗口置顶,需要设置环境
}
string[] Day = new string[] { “周日“ “周一“ “周二“ “周三“ “周四“ “周五“ “周六“ };
private void timer1_Tick(object sender EventArgs e)
{
string week = Day[Convert.ToInt32(DateTime.Now.DayOfWeek.ToString(“d“))].ToString();
label1.Text = DateTime.Now.ToString (“yyyy-MM-dd“);
label2.Text = DateTime.Now.ToString(“HH:mm:ss“);
label6.Text = ““ + ChinaDate.GetChinaDate(DateTime.Now) + “ “ + week;
jishiqi0(); //秒表0
jishiqi1(); //秒表1
if (textBox_Hour.Text != ““ || textBox_Minute.Text != ““)
{
if ((textBox_Hour.Text == ““ ? 0 : Convert.ToInt32(textBox_Hour.Text)) == Convert.ToInt32(DateTime.Now.Hour.ToString(“00“))
&& (textBox_Minute.Text == ““ ? 0 : Convert.ToInt32(textBox_Minute.Text)) == Convert.ToInt32(DateTime.Now.Minute.ToString(“00“))
&& (textBox_Second.Text == ““ ? 0 : Convert.ToInt32(textBox_Second.Text)) == Convert.ToInt32(DateTime.Now.Second.ToString(“00“)))
{ label8.Text = “xxx“; Form1_MouseDoubleClick(null null); }
else { label8.Text = “rrr“; }
}
// && Convert.ToInt32(textBox_minute.Text) == Conve
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3853 2017-12-07 17:27 桌面日历_V1.0\UpgradeLog.xm
文件 363566 2017-08-14 01:19 桌面日历_V1.0\桌面日历\707.ico
文件 750592 2021-01-04 19:30 桌面日历_V1.0\桌面日历\bin\Debug\桌面日历.exe
文件 42496 2021-01-04 19:30 桌面日历_V1.0\桌面日历\bin\Debug\桌面日历.pdb
文件 11608 2021-01-04 19:31 桌面日历_V1.0\桌面日历\bin\Debug\桌面日历.vshost.exe
文件 490 2017-09-29 21:43 桌面日历_V1.0\桌面日历\bin\Debug\桌面日历.vshost.exe.manifest
文件 20469 2021-01-04 19:30 桌面日历_V1.0\桌面日历\Form1.cs
文件 16479 2021-01-04 19:30 桌面日历_V1.0\桌面日历\Form1.Designer.cs
文件 552050 2021-01-04 19:30 桌面日历_V1.0\桌面日历\Form1.resx
文件 1371 2021-01-04 19:29 桌面日历_V1.0\桌面日历\obj\Debug\DesignTimeResolveAssemblyReferences.cache
文件 6181 2021-01-04 19:30 桌面日历_V1.0\桌面日历\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 4608 2017-12-07 17:27 桌面日历_V1.0\桌面日历\obj\Debug\TempPE\Properties.Resources.Designer.cs.dll
文件 2797 2021-01-04 19:31 桌面日历_V1.0\桌面日历\obj\Debug\桌面日历.csproj.FileListAbsolute.txt
文件 975 2021-01-04 19:30 桌面日历_V1.0\桌面日历\obj\Debug\桌面日历.csproj.GenerateResource.Cache
文件 1757 2021-01-04 19:30 桌面日历_V1.0\桌面日历\obj\Debug\桌面日历.csprojResolveAssemblyReference.cache
文件 750592 2021-01-04 19:30 桌面日历_V1.0\桌面日历\obj\Debug\桌面日历.exe
文件 364132 2021-01-04 19:30 桌面日历_V1.0\桌面日历\obj\Debug\桌面日历.Form1.resources
文件 42496 2021-01-04 19:30 桌面日历_V1.0\桌面日历\obj\Debug\桌面日历.pdb
文件 180 2020-10-20 08:27 桌面日历_V1.0\桌面日历\obj\Debug\桌面日历.Properties.Resources.resources
文件 493 2017-08-13 00:29 桌面日历_V1.0\桌面日历\Program.cs
文件 1338 2018-05-16 15:15 桌面日历_V1.0\桌面日历\Properties\AssemblyInfo.cs
文件 2864 2017-12-07 17:27 桌面日历_V1.0\桌面日历\Properties\Resources.Designer.cs
文件 5612 2017-08-13 00:29 桌面日历_V1.0\桌面日历\Properties\Resources.resx
文件 1112 2017-12-07 17:27 桌面日历_V1.0\桌面日历\Properties\Settings.Designer.cs
文件 249 2017-08-13 00:29 桌面日历_V1.0\桌面日历\Properties\Settings.settings
文件 4168 2017-12-07 17:27 桌面日历_V1.0\桌面日历\桌面日历.csproj
文件 926 2017-12-07 17:27 桌面日历_V1.0\桌面日历.sln
..A..H. 20480 2021-01-04 19:31 桌面日历_V1.0\桌面日历.suo
目录 0 2019-02-17 10:35 桌面日历_V1.0\桌面日历\obj\Debug\TempPE
目录 0 2019-02-17 10:35 桌面日历_V1.0\桌面日历\bin\Debug
............此处省略10个文件信息
- 上一篇:读取文件夹下的note文本文件,编辑、保存
- 下一篇:C#开发 CAD 编程基础
相关资源
- Unity日历插件
- C# 桌面时钟(穿透)
- C#操作Exchange日历,查询会议室使用情
- WeifenLuo.WinFormsUI.Docking3.1.0
- ASP.NET Zero Core v8.1.0 (2019-12-20)
- EDSDK-13.11.0.rar
- C#基于wpf实现的天气日历生活助手
- C# 定时任务
- WinForm员工综合管理系统 v1.0.zip
- PC桌面程序鼠标轨迹在Robotstudio中重现
- NModbus_net-3.5_1.11.0.0-source
- 协会管理系统V1.0 源代码
- 远程桌面控制C#源码
- C#写的桌面倒计时器,可用于各种竞赛
- 两款基于Windows的桌面管理系统.net(
- C# 桌面背单词软件测试版。。只有一
- asp.net 1.0论坛源码
- Microsoft.ReportViewer 11.0.0 dll
- FOCAS_API_DEMO_VS2015_C#_FORM_V1.0.rar
- rfid windows mobile6.5 仓库管理源码v1.0
- C#远程桌面源码.zip
- 基于windows桌面的c#基础知识,
- ★基于C#+ArcGIS Engine构建的GIS桌面端应
- c# 实现多个客户端桌面截取共享到服
- C#做的桌面快捷方式管理程序
- 美萍超市管理系统源码C#V1.0
- 最新版 Best HTTP v1.11.0.unitypackage
- System.Web.Mvc.dll 1.0-5.0各种版本
- MySkin V1.0
- C#桌面日历天气
评论
共有 条评论