1 Star 2 Fork 4

Sunday/JsonCSharpClassGenerator

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
frmAbout.cs 1.60 KB
一键复制 编辑 原始数据 按行查看 历史
// Copyright © 2010 Xamasoft
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;
namespace Xamasoft.JsonClassGenerator.UI
{
public partial class frmAbout : Form
{
public frmAbout()
{
InitializeComponent();
#if !APPSERVICES
btnSendFeedback.Visible = false;
btnCheckUpdates.Visible = false;
#endif
this.Font = SystemFonts.MessageBoxFont;
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("http://www.xamasoft.com/json-class-generator");
}
private void frmAbout_Load(object sender, EventArgs e)
{
lblVersion.Text=string.Format(lblVersion.Text, System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString() );
}
private void btnSendFeedback_Click(object sender, EventArgs e)
{
#if APPSERVICES
Program.appServices.ShowFeedbackForm(this);
#endif
}
private void btnCheckUpdates_Click(object sender, EventArgs e)
{
#if APPSERVICES
Program.appServices.UpdateChecker.ManualUpdatesCheck(this);
#endif
}
private void githubLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("https://github.com/JsonCSharpClassGenerator/JsonCSharpClassGenerator");
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/sundayisblue/JsonCSharpClassGenerator.git
[email protected]:sundayisblue/JsonCSharpClassGenerator.git
sundayisblue
JsonCSharpClassGenerator
JsonCSharpClassGenerator
master

搜索帮助