-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
5,339 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; } | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
|
||
} | ||
} |
Oops, something went wrong.