当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
1 Star 0 Fork 0

心倾/To-do_List
关闭

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
AboutWindow.cs 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
心倾 提交于 2021-09-23 11:42 . 1.2.1.1
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace To_do_List
{
public partial class aboutwindow : Form
{
public aboutwindow()
{
InitializeComponent();
Versionlabel.Text= "版本号:" + To_do_List.MainWindow.Version;
int now = 2021;
if(DateTime.Now.Year > now)
{
now = DateTime.Now.Year;
}
this.aboutlabel.Text = "刘汉涛 版权所有 2021 - " + now;
}
private void button1_Click(object sender, EventArgs e)
{
this.Close();
this.Dispose();
}
private void richTextBox1_LinkClicked(object sender, LinkClickedEventArgs e)
{
try
{
System.Diagnostics.Process.Start(e.LinkText);
this.Close();
this.Dispose();
}
catch
{
}
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/LHTXQ/To-do_List.git
git@gitee.com:LHTXQ/To-do_List.git
LHTXQ
To-do_List
To-do_List
main

搜索帮助