Update ry3ui package
This commit is contained in:
parent
48b8127258
commit
501459bd50
20
AppResource.Designer.cs
generated
20
AppResource.Designer.cs
generated
@ -89,6 +89,26 @@ namespace FizzyLauncher {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
internal static System.Drawing.Bitmap file {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("file", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
|
/// </summary>
|
||||||
|
internal static System.Drawing.Bitmap folder {
|
||||||
|
get {
|
||||||
|
object obj = ResourceManager.GetObject("folder", resourceCulture);
|
||||||
|
return ((System.Drawing.Bitmap)(obj));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -127,6 +127,12 @@
|
|||||||
<data name="disk2" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="disk2" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>Resources\disk2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>Resources\disk2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="file" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>Resources\file.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
|
<data name="folder" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
|
<value>Resources\folder.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
</data>
|
||||||
<data name="folder_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="folder_32" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>Resources\folder_32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>Resources\folder_32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
|
4
MainForm.Designer.cs
generated
4
MainForm.Designer.cs
generated
@ -129,7 +129,7 @@ namespace FizzyLauncher
|
|||||||
//
|
//
|
||||||
// newToolStripMenuItem
|
// newToolStripMenuItem
|
||||||
//
|
//
|
||||||
this.newToolStripMenuItem.Image = global::RyzStudio.UIResource1.file;
|
this.newToolStripMenuItem.Image = AppResource.file;
|
||||||
this.newToolStripMenuItem.Name = "newToolStripMenuItem";
|
this.newToolStripMenuItem.Name = "newToolStripMenuItem";
|
||||||
this.newToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
|
this.newToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
|
||||||
this.newToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
|
this.newToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
|
||||||
@ -138,7 +138,7 @@ namespace FizzyLauncher
|
|||||||
//
|
//
|
||||||
// openToolStripMenuItem
|
// openToolStripMenuItem
|
||||||
//
|
//
|
||||||
this.openToolStripMenuItem.Image = global::RyzStudio.UIResource1.folder;
|
this.openToolStripMenuItem.Image = AppResource.folder;
|
||||||
this.openToolStripMenuItem.Name = "openToolStripMenuItem";
|
this.openToolStripMenuItem.Name = "openToolStripMenuItem";
|
||||||
this.openToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
|
this.openToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
|
||||||
this.openToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
|
this.openToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
using FizzyLauncher.Models;
|
using FizzyLauncher.Models;
|
||||||
|
using RyzStudio.Drawing;
|
||||||
using RyzStudio.Text.Json;
|
using RyzStudio.Text.Json;
|
||||||
using RyzStudio.Windows.Forms;
|
using RyzStudio.Windows.Forms;
|
||||||
using System;
|
using System;
|
||||||
|
Binary file not shown.
BIN
Resources/file.png
Normal file
BIN
Resources/file.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 390 B |
BIN
Resources/folder.png
Normal file
BIN
Resources/folder.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 318 B |
@ -5,11 +5,10 @@ using System.Drawing;
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
using FizzyLauncher.Models;
|
using FizzyLauncher.Models;
|
||||||
using RyzStudio.Windows.ThemedForms;
|
|
||||||
|
|
||||||
namespace FizzyLauncher.Windows.Forms
|
namespace FizzyLauncher.Windows.Forms
|
||||||
{
|
{
|
||||||
public partial class TilePanel : TUserControl
|
public partial class TilePanel : RyzStudio.Windows.Forms.TC1UserControl
|
||||||
{
|
{
|
||||||
protected bool isDragging = false;
|
protected bool isDragging = false;
|
||||||
protected Point startPosition = new Point();
|
protected Point startPosition = new Point();
|
||||||
|
@ -9,11 +9,10 @@ using System.Threading.Tasks;
|
|||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
using FizzyLauncher.Models;
|
using FizzyLauncher.Models;
|
||||||
using RyzStudio.Windows.Forms;
|
using RyzStudio.Windows.Forms;
|
||||||
using RyzStudio.Windows.ThemedForms;
|
|
||||||
|
|
||||||
namespace FizzyLauncher.Windows.Forms
|
namespace FizzyLauncher.Windows.Forms
|
||||||
{
|
{
|
||||||
public partial class TilePanelLayout : TUserControl
|
public partial class TilePanelLayout : RyzStudio.Windows.Forms.TC1UserControl
|
||||||
{
|
{
|
||||||
public static int CalcWidth(int tileCount) => (tileCount * tileSize) + ((tileCount - 1) * margin);
|
public static int CalcWidth(int tileCount) => (tileCount * tileSize) + ((tileCount - 1) * margin);
|
||||||
|
|
||||||
|
4
skye.sln
4
skye.sln
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio Version 16
|
# Visual Studio Version 17
|
||||||
VisualStudioVersion = 16.0.31410.357
|
VisualStudioVersion = 17.4.33205.214
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FizzyLauncher", "FizzyLauncher.csproj", "{4833FB27-0817-4720-A54B-180369B0C374}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FizzyLauncher", "FizzyLauncher.csproj", "{4833FB27-0817-4720-A54B-180369B0C374}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Reference in New Issue
Block a user