mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-05-30 14:34:08 +02:00
Move RichTextLabel and FormBackgroundWork to different namespaces
This commit is contained in:
parent
f7265405d7
commit
0c7d625391
@ -1,4 +1,4 @@
|
|||||||
namespace TweetDick.Core {
|
namespace TweetDick.Core.Controls {
|
||||||
partial class RichTextLabel {
|
partial class RichTextLabel {
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Required designer variable.
|
/// Required designer variable.
|
@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
|
|
||||||
namespace TweetDick.Core{
|
namespace TweetDick.Core.Controls{
|
||||||
public partial class RichTextLabel : RichTextBox{
|
public partial class RichTextLabel : RichTextBox{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Wraps the body of a RTF formatted string with default tags and formatting.
|
/// Wraps the body of a RTF formatted string with default tags and formatting.
|
@ -1,4 +1,6 @@
|
|||||||
namespace TweetDick.Core {
|
using TweetDick.Core.Controls;
|
||||||
|
|
||||||
|
namespace TweetDick.Core.Other {
|
||||||
partial class FormBackgroundWork {
|
partial class FormBackgroundWork {
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Required designer variable.
|
/// Required designer variable.
|
||||||
@ -24,7 +26,7 @@ protected override void Dispose(bool disposing) {
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
private void InitializeComponent() {
|
private void InitializeComponent() {
|
||||||
this.progressBarUseless = new System.Windows.Forms.ProgressBar();
|
this.progressBarUseless = new System.Windows.Forms.ProgressBar();
|
||||||
this.labelDescription = new TweetDick.Core.RichTextLabel();
|
this.labelDescription = new RichTextLabel();
|
||||||
this.SuspendLayout();
|
this.SuspendLayout();
|
||||||
//
|
//
|
||||||
// progressBarUseless
|
// progressBarUseless
|
||||||
@ -71,6 +73,6 @@ private void InitializeComponent() {
|
|||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
private System.Windows.Forms.ProgressBar progressBarUseless;
|
private System.Windows.Forms.ProgressBar progressBarUseless;
|
||||||
private Core.RichTextLabel labelDescription;
|
private RichTextLabel labelDescription;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,8 +1,9 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
|
using TweetDick.Core.Controls;
|
||||||
|
|
||||||
namespace TweetDick.Core{
|
namespace TweetDick.Core.Other{
|
||||||
public partial class FormBackgroundWork : Form{
|
partial class FormBackgroundWork : Form{
|
||||||
public FormBackgroundWork(){
|
public FormBackgroundWork(){
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
|
8
Migration/FormMigrationQuestion.Designer.cs
generated
8
Migration/FormMigrationQuestion.Designer.cs
generated
@ -1,4 +1,6 @@
|
|||||||
namespace TweetDick.Migration {
|
using TweetDick.Core.Controls;
|
||||||
|
|
||||||
|
namespace TweetDick.Migration {
|
||||||
partial class FormMigrationQuestion {
|
partial class FormMigrationQuestion {
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Required designer variable.
|
/// Required designer variable.
|
||||||
@ -29,7 +31,7 @@ private void InitializeComponent() {
|
|||||||
this.btnCopy = new System.Windows.Forms.Button();
|
this.btnCopy = new System.Windows.Forms.Button();
|
||||||
this.btnMigrate = new System.Windows.Forms.Button();
|
this.btnMigrate = new System.Windows.Forms.Button();
|
||||||
this.btnMigrateUninstall = new System.Windows.Forms.Button();
|
this.btnMigrateUninstall = new System.Windows.Forms.Button();
|
||||||
this.labelQuestion = new TweetDick.Core.RichTextLabel();
|
this.labelQuestion = new RichTextLabel();
|
||||||
this.panelButtons.SuspendLayout();
|
this.panelButtons.SuspendLayout();
|
||||||
this.SuspendLayout();
|
this.SuspendLayout();
|
||||||
//
|
//
|
||||||
@ -159,7 +161,7 @@ private void InitializeComponent() {
|
|||||||
private System.Windows.Forms.FlowLayoutPanel panelButtons;
|
private System.Windows.Forms.FlowLayoutPanel panelButtons;
|
||||||
private System.Windows.Forms.Button btnCopy;
|
private System.Windows.Forms.Button btnCopy;
|
||||||
private System.Windows.Forms.Button btnMigrate;
|
private System.Windows.Forms.Button btnMigrate;
|
||||||
private Core.RichTextLabel labelQuestion;
|
private RichTextLabel labelQuestion;
|
||||||
private System.Windows.Forms.Button btnAskLater;
|
private System.Windows.Forms.Button btnAskLater;
|
||||||
private System.Windows.Forms.Button btnMigrateUninstall;
|
private System.Windows.Forms.Button btnMigrateUninstall;
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
using System.Drawing;
|
using System.Drawing;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
using TweetDick.Core;
|
using TweetDick.Core;
|
||||||
|
using TweetDick.Core.Controls;
|
||||||
|
|
||||||
namespace TweetDick.Migration{
|
namespace TweetDick.Migration{
|
||||||
partial class FormMigrationQuestion : Form{
|
partial class FormMigrationQuestion : Form{
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
using TweetDick.Core;
|
using TweetDick.Core;
|
||||||
|
using TweetDick.Core.Other;
|
||||||
using TweetDick.Migration.Helpers;
|
using TweetDick.Migration.Helpers;
|
||||||
|
|
||||||
namespace TweetDick.Migration{
|
namespace TweetDick.Migration{
|
||||||
|
@ -93,16 +93,16 @@
|
|||||||
<DependentUpon>FormNotification.cs</DependentUpon>
|
<DependentUpon>FormNotification.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Core\Handling\TweetNotification.cs" />
|
<Compile Include="Core\Handling\TweetNotification.cs" />
|
||||||
<Compile Include="Core\RichTextLabel.cs">
|
<Compile Include="Core\Controls\RichTextLabel.cs">
|
||||||
<SubType>Component</SubType>
|
<SubType>Component</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Core\RichTextLabel.Designer.cs">
|
<Compile Include="Core\Controls\RichTextLabel.Designer.cs">
|
||||||
<DependentUpon>RichTextLabel.cs</DependentUpon>
|
<DependentUpon>RichTextLabel.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Core\FormBackgroundWork.cs">
|
<Compile Include="Core\Other\FormBackgroundWork.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Core\FormBackgroundWork.Designer.cs">
|
<Compile Include="Core\Other\FormBackgroundWork.Designer.cs">
|
||||||
<DependentUpon>FormBackgroundWork.cs</DependentUpon>
|
<DependentUpon>FormBackgroundWork.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Core\Handling\TweetDeckBridge.cs" />
|
<Compile Include="Core\Handling\TweetDeckBridge.cs" />
|
||||||
|
Loading…
Reference in New Issue
Block a user