Move windows to /Fomrs

This commit is contained in:
2022-05-19 20:51:13 +08:00
parent 3c7a21cdbd
commit 7f10eb8ac4
18 changed files with 23 additions and 24 deletions

View File

@ -1,5 +1,5 @@

namespace GrasscutterTools
namespace GrasscutterTools.Forms
{
partial class FormGachaBannerEditor
{

View File

@ -29,7 +29,7 @@ using GrasscutterTools.Properties;
using Newtonsoft.Json;
namespace GrasscutterTools
namespace GrasscutterTools.Forms
{
/// <summary>
/// 卡池编辑器

View File

@ -1,5 +1,5 @@

namespace GrasscutterTools
namespace GrasscutterTools.Forms
{
partial class FormMain
{

View File

@ -30,7 +30,7 @@ using GrasscutterTools.Game;
using GrasscutterTools.OpenCommand;
using GrasscutterTools.Properties;
namespace GrasscutterTools
namespace GrasscutterTools.Forms
{
public partial class FormMain : Form
{

View File

@ -1,4 +1,4 @@
namespace GrasscutterTools
namespace GrasscutterTools.Forms
{
partial class FormTextMapBrowser
{

View File

@ -26,7 +26,7 @@ using System.Windows.Forms;
using GrasscutterTools.Game;
using GrasscutterTools.Properties;
namespace GrasscutterTools
namespace GrasscutterTools.Forms
{
public partial class FormTextMapBrowser : Form
{

View File

@ -24,8 +24,7 @@ using Newtonsoft.Json.Converters;
namespace GrasscutterTools.Game.Gacha
{
/// <summary>
/// 使用这个只需替换掉你原来的的data/banner.json文件
/// 然后重启服务器和客户端,即可享受全卡池抽卡,卡池的选择方式是点击左右箭头进行切换
/// https://github.com/Grasscutters/Grasscutter/pull/639
/// </summary>
public class GachaBanner2
{

View File

@ -197,22 +197,22 @@
<ItemGroup>
<Compile Include="DispatchServer\DispatchServerAPI.cs" />
<Compile Include="DispatchServer\Model\ServerStatus.cs" />
<Compile Include="FormGachaBannerEditor.cs">
<Compile Include="Forms\FormGachaBannerEditor.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="FormGachaBannerEditor.Designer.cs">
<Compile Include="Forms\FormGachaBannerEditor.Designer.cs">
<DependentUpon>FormGachaBannerEditor.cs</DependentUpon>
</Compile>
<Compile Include="FormMain.cs">
<Compile Include="Forms\FormMain.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="FormMain.Designer.cs">
<Compile Include="Forms\FormMain.Designer.cs">
<DependentUpon>FormMain.cs</DependentUpon>
</Compile>
<Compile Include="FormTextMapBrowser.cs">
<Compile Include="Forms\FormTextMapBrowser.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="FormTextMapBrowser.Designer.cs">
<Compile Include="Forms\FormTextMapBrowser.Designer.cs">
<DependentUpon>FormTextMapBrowser.cs</DependentUpon>
</Compile>
<Compile Include="Game\Gacha\GachaBanner2.cs" />
@ -229,34 +229,34 @@
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Utils\HttpHelper.cs" />
<EmbeddedResource Include="FormGachaBannerEditor.en-us.resx">
<EmbeddedResource Include="Forms\FormGachaBannerEditor.en-us.resx">
<DependentUpon>FormGachaBannerEditor.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="FormGachaBannerEditor.ru-ru.resx">
<EmbeddedResource Include="Forms\FormGachaBannerEditor.ru-ru.resx">
<DependentUpon>FormGachaBannerEditor.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="FormGachaBannerEditor.resx">
<EmbeddedResource Include="Forms\FormGachaBannerEditor.resx">
<DependentUpon>FormGachaBannerEditor.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="FormMain.en-us.resx">
<EmbeddedResource Include="Forms\FormMain.en-us.resx">
<DependentUpon>FormMain.cs</DependentUpon>
<SubType>Designer</SubType>
</EmbeddedResource>
<EmbeddedResource Include="FormMain.ru-ru.resx">
<EmbeddedResource Include="Forms\FormMain.ru-ru.resx">
<DependentUpon>FormMain.cs</DependentUpon>
<SubType>Designer</SubType>
</EmbeddedResource>
<EmbeddedResource Include="FormMain.resx">
<EmbeddedResource Include="Forms\FormMain.resx">
<DependentUpon>FormMain.cs</DependentUpon>
<SubType>Designer</SubType>
</EmbeddedResource>
<EmbeddedResource Include="FormTextMapBrowser.en-US.resx">
<EmbeddedResource Include="Forms\FormTextMapBrowser.en-US.resx">
<DependentUpon>FormTextMapBrowser.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="FormTextMapBrowser.ru-ru.resx">
<EmbeddedResource Include="Forms\FormTextMapBrowser.ru-ru.resx">
<DependentUpon>FormTextMapBrowser.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="FormTextMapBrowser.resx">
<EmbeddedResource Include="Forms\FormTextMapBrowser.resx">
<DependentUpon>FormTextMapBrowser.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.en-us.resx">

View File

@ -43,7 +43,7 @@ namespace GrasscutterTools
//处理非UI线程异常
AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;
Application.Run(new FormMain());
Application.Run(new Forms.FormMain());
}
#region - -