mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-08-21 03:54:07 +02:00
Configuration
Core
Bridge
Controls
Handling
Notification
Other
Settings
FormAbout.Designer.cs
FormAbout.cs
FormAbout.resx
FormMessage.Designer.cs
FormMessage.cs
FormPlugins.Designer.cs
FormPlugins.cs
FormPlugins.resx
FormSettings.Designer.cs
FormSettings.cs
FormSettings.resx
Utils
FormBrowser.Designer.cs
FormBrowser.cs
FormBrowser.resx
TrayIcon.Designer.cs
TrayIcon.cs
Plugins
Properties
Resources
Updates
bld
lib
subprocess
tests
.gitignore
LICENSE.md
Program.cs
README.md
Reporter.cs
TweetDuck.csproj
TweetDuck.sln
TweetDuck.sln.DotSettings
_postbuild.bat
packages.config
26 lines
1.1 KiB
C#
26 lines
1.1 KiB
C#
using System.Windows.Forms;
|
|
using TweetDuck.Core.Utils;
|
|
|
|
namespace TweetDuck.Core.Other{
|
|
sealed partial class FormAbout : Form{
|
|
private const string TipsLink = "https://github.com/chylex/TweetDuck/wiki";
|
|
private const string IssuesLink = "https://github.com/chylex/TweetDuck/issues";
|
|
|
|
public FormAbout(){
|
|
InitializeComponent();
|
|
|
|
Text = "About "+Program.BrandName+" "+Program.VersionTag;
|
|
|
|
labelDescription.Text = Program.BrandName+" was created by chylex as a replacement to the discontinued official TweetDeck client for Windows.\n\nThe program is available for free under the open source MIT license.";
|
|
|
|
labelWebsite.Links.Add(new LinkLabel.Link(0, labelWebsite.Text.Length, Program.Website));
|
|
labelTips.Links.Add(new LinkLabel.Link(0, labelTips.Text.Length, TipsLink));
|
|
labelIssues.Links.Add(new LinkLabel.Link(0, labelIssues.Text.Length, IssuesLink));
|
|
}
|
|
|
|
private void OnLinkClicked(object sender, LinkLabelLinkClickedEventArgs e){
|
|
BrowserUtils.OpenExternalBrowserUnsafe(e.Link.LinkData as string);
|
|
}
|
|
}
|
|
}
|