- switched to standard .NET 3.5 framework (from client profile)

- use GlobalImageCollection to prevent image list corruption when switching languages  for main form in Forms Designer
- right-align donate button (smaller in German version)
This commit is contained in:
hbeham
2013-04-07 16:54:07 +02:00
parent 460e09c2f1
commit bae9a82efa
9 changed files with 3028 additions and 2331 deletions

View File

@@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Imaging;
using System.Globalization;
using System.IO;
using System.Reflection;
@@ -22,7 +23,7 @@ namespace ChanSort.Ui
{
public partial class MainForm : XtraForm
{
public const string AppVersion = "v2013-04-06";
public const string AppVersion = "v2013-04-07";
#region enum EditMode
private enum EditMode
@@ -73,6 +74,9 @@ namespace ChanSort.Ui
else this.rbInsertSwap.Checked = true;
this.cbAppendUnsortedChannels.Checked = true;
this.ActiveControl = this.gridRight;
Xaron.UIHelpers.ImageListDumper.WriteToDirectory(this.globalImageCollection1.ImageSource, @"c:\temp\chansort", "",
ImageFormat.Png);
}
#endregion