Skip to content

Commit

Permalink
FIX Namespace....
Browse files Browse the repository at this point in the history
  • Loading branch information
t0815 committed Oct 27, 2022
1 parent 56d961b commit 2a15b98
Show file tree
Hide file tree
Showing 41 changed files with 146 additions and 194 deletions.
30 changes: 15 additions & 15 deletions MyCBZ/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="MyCBZ.Win_CBZSettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
<section name="MyCBZ.CBZMageSettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
<section name="MyCBZ.Settings1" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
<section name="Win_CBZ.Win_CBZSettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
<section name="Win_CBZ.CBZMageSettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
<section name="Win_CBZ.Settings1" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="MyCBZ.Win_CBZSettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
<section name="MyCBZ.CBZMageSettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
<section name="Win_CBZ.Win_CBZSettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
<section name="Win_CBZ.CBZMageSettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
<userSettings>
<MyCBZ.Win_CBZSettings>
<Win_CBZ.Win_CBZSettings>
<setting name="TempFolderPath" serializeAs="String">
<value>%APPDATA%\CBZMage\Temp\</value>
</setting>
Expand All @@ -28,8 +28,8 @@
<setting name="PagePreviewEnabled" serializeAs="String">
<value>False</value>
</setting>
</MyCBZ.Win_CBZSettings>
<MyCBZ.CBZMageSettings>
</Win_CBZ.Win_CBZSettings>
<Win_CBZ.CBZMageSettings>
<setting name="TempFolderPath" serializeAs="String">
<value>%APPDATA%\CBZMage\Temp\</value>
</setting>
Expand All @@ -42,15 +42,15 @@
<setting name="PagePreviewEnabled" serializeAs="String">
<value>False</value>
</setting>
</MyCBZ.CBZMageSettings>
<MyCBZ.Settings1>
</Win_CBZ.CBZMageSettings>
<Win_CBZ.Settings1>
<setting name="TempFolderPath" serializeAs="String">
<value />
</setting>
</MyCBZ.Settings1>
</Win_CBZ.Settings1>
</userSettings>
<applicationSettings>
<MyCBZ.Win_CBZSettings>
<Win_CBZ.Win_CBZSettings>
<setting name="Version" serializeAs="String">
<value>0.5b</value>
</setting>
Expand Down Expand Up @@ -82,8 +82,8 @@
<setting name="AppName" serializeAs="String">
<value>Win_CBZ</value>
</setting>
</MyCBZ.Win_CBZSettings>
<MyCBZ.CBZMageSettings>
</Win_CBZ.Win_CBZSettings>
<Win_CBZ.CBZMageSettings>
<setting name="Version" serializeAs="String">
<value>0.5b</value>
</setting>
Expand Down Expand Up @@ -115,6 +115,6 @@
<setting name="AppName" serializeAs="String">
<value>Win_CBZ</value>
</setting>
</MyCBZ.CBZMageSettings>
</Win_CBZ.CBZMageSettings>
</applicationSettings>
</configuration>
2 changes: 1 addition & 1 deletion MyCBZ/Colors.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Text;
using System.Threading.Tasks;

namespace MyCBZ
namespace Win_CBZ
{
internal class Colors
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Dragging items in a ListView control with visual insertion guides
// http://www.cyotek.com/blog/dragging-items-in-a-listview-control-with-visual-insertion-guides

namespace MyCBZ
namespace Win_CBZ
{
/// <summary>
/// Provides data for the <see cref="ListView.ItemDragging"/> event of the <see cref="ListView"/> control.
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion MyCBZ/Components/ExtendedListView/ExtendetListView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
using System.Threading.Tasks;
using System.Windows.Forms;

namespace MyCBZ
namespace Win_CBZ
{
public class ExtendetListView : System.Windows.Forms.ListView
{
Expand Down
2 changes: 1 addition & 1 deletion MyCBZ/Components/ExtendedListView/InsertionMode.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Dragging items in a ListView control with visual insertion guides
// http://www.cyotek.com/blog/dragging-items-in-a-listview-control-with-visual-insertion-guides

namespace MyCBZ
namespace Win_CBZ
{
/// <summary>
/// Determines the insertion mode of a drag operation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Dragging items in a ListView control with visual insertion guides
// http://www.cyotek.com/blog/dragging-items-in-a-listview-control-with-visual-insertion-guides

namespace MyCBZ
namespace Win_CBZ
{
/// <summary>
/// Provides data for the <see cref="ListView.ItemDragDrop"/> event of the <see cref="ListView"/> control.
Expand Down
5 changes: 2 additions & 3 deletions MyCBZ/Events/ArchiveOperationEvent.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
using CBZMage;
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MyCBZ
namespace Win_CBZ
{
internal class ArchiveOperationEvent
{
Expand Down
5 changes: 2 additions & 3 deletions MyCBZ/Events/CBZArchiveStatusEvent.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
using CBZMage;
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MyCBZ
namespace Win_CBZ
{
internal class CBZArchiveStatusEvent
{
Expand Down
7 changes: 3 additions & 4 deletions MyCBZ/Events/FileOperationEvent.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
using CBZMage;
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MyCBZ
namespace Win_CBZ
{
internal class FileOperationEvent
{
Expand All @@ -26,7 +25,7 @@ internal class FileOperationEvent
public long Completed { get; set; }

public long Total { get; set; }


public FileOperationEvent(int operation, int status, long completed, long total, Page image)
{
Expand Down
5 changes: 2 additions & 3 deletions MyCBZ/Events/ItemChangedEvent.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
using CBZMage;
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MyCBZ
namespace Win_CBZ
{
internal class PageChangedEvent
{
Expand Down
5 changes: 2 additions & 3 deletions MyCBZ/Events/ItemExtractedEvent.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
using CBZMage;
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MyCBZ
namespace Win_CBZ
{
internal class ItemExtractedEvent
{
Expand Down
5 changes: 2 additions & 3 deletions MyCBZ/Events/ItemFailedEvent.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
using CBZMage;
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MyCBZ
namespace Win_CBZ
{
internal class ItemFailedEvent
{
Expand Down
6 changes: 2 additions & 4 deletions MyCBZ/Events/ItemLoadProgressEvent.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
using CBZMage;
using CBZMage;
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MyCBZ
namespace Win_CBZ
{
internal class ItemLoadProgressEvent
{
Expand Down
5 changes: 2 additions & 3 deletions MyCBZ/Events/LogMessageEvent.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
using CBZMage;
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MyCBZ
namespace Win_CBZ
{
internal class LogMessageEvent
{
Expand Down
5 changes: 2 additions & 3 deletions MyCBZ/Events/MetaDataLoadEvent.cs
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
using CBZMage;
using System;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MyCBZ
namespace Win_CBZ
{
internal class MetaDataLoadEvent
{
Expand Down
5 changes: 2 additions & 3 deletions MyCBZ/Events/OperationFinishedEvent.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
using CBZMage;
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MyCBZ
namespace Win_CBZ
{
internal class OperationFinishedEvent
{
Expand Down
2 changes: 1 addition & 1 deletion MyCBZ/Exceptions/MetaDataValidationException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Text;
using System.Threading.Tasks;

namespace MyCBZ
namespace Win_CBZ
{
internal class MetaDataValidationException : Exception
{
Expand Down
6 changes: 3 additions & 3 deletions MyCBZ/Forms/AboutDialogForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions MyCBZ/Forms/AboutDialogForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
using System.Threading.Tasks;
using System.Windows.Forms;

namespace MyCBZ.Forms
namespace Win_CBZ.Forms
{
public partial class AboutDialogForm : Form
{
public AboutDialogForm()
{
InitializeComponent();
AppNameLabel.Text = Win_CBZSettings.Default.AppName;
LicenseInfoRichtextBox.Rtf = global::MyCBZ.Properties.Resources.CBZMageAboutMessage;
LicenseInfoRichtextBox.Rtf = global::Win_CBZ.Properties.Resources.CBZMageAboutMessage;
}

private void button1_Click(object sender, EventArgs e)
Expand Down
2 changes: 1 addition & 1 deletion MyCBZ/Forms/ImagePreviewForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion MyCBZ/Forms/ImagePreviewForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using System.Threading.Tasks;
using System.Windows.Forms;

namespace MyCBZ
namespace Win_CBZ
{
public partial class ImagePreviewForm : Form
{
Expand Down
Loading

0 comments on commit 2a15b98

Please sign in to comment.