Skip to content

Commit

Permalink
添加.net core版本
Browse files Browse the repository at this point in the history
  • Loading branch information
X-Lucifer committed Oct 3, 2021
1 parent 632f732 commit b831627
Show file tree
Hide file tree
Showing 32 changed files with 5,339 additions and 40 deletions.
8 changes: 8 additions & 0 deletions src/LosslessZoom.Core/ComboxItem.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
namespace LosslessZoom.Core
{
public class ComboxItem
{
public string Id { get; set; }
public string Name { get; set; }
}
}
240 changes: 240 additions & 0 deletions src/LosslessZoom.Core/FormAbout.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions src/LosslessZoom.Core/FormAbout.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
using System;
using System.Reflection;
using Sunny.UI;

namespace LosslessZoom.Core
{
public partial class FormAbout : UIForm
{
public FormAbout()
{
InitializeComponent();
}

private void FormAbout_Load(object sender, EventArgs e)
{
lblxAuthor.Text = @"https://github.com/X-Lucifer";
lblxDesc.Text = @"AI无损放大工具";
lblxVersion.Text = Assembly.GetExecutingAssembly().GetName().Version?.ToString();
lblxCopyright.Text = Assembly.GetExecutingAssembly().GetCustomAttribute<AssemblyCopyrightAttribute>()?.Copyright;
}

}
}
Loading

0 comments on commit b831627

Please sign in to comment.