1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-04-30 14:34:09 +02:00

Move TweetDeckBridge to Core.Handling namespace

This commit is contained in:
chylex 2016-04-10 18:08:06 +02:00
parent 0d2681c5ba
commit d89c51a1d3
3 changed files with 8 additions and 2 deletions

View File

@ -6,6 +6,7 @@
using CefSharp;
using System.IO;
using System.Text;
using TweetDick.Core.Handling;
namespace TweetDick.Core{
public partial class FormBrowser : Form{

View File

@ -1,5 +1,6 @@
using System.Windows.Forms;
namespace TweetDick.Core{
namespace TweetDick.Core.Handling{
class TweetDeckBridge{
private readonly FormBrowser form;
@ -7,6 +8,10 @@ public TweetDeckBridge(FormBrowser form){
this.form = form;
}
public void OpenSettingsMenu(){
MessageBox.Show("Settings");
}
public void Log(string data){
System.Diagnostics.Debug.WriteLine(data);
}

View File

@ -97,7 +97,7 @@
<Compile Include="Core\FormBackgroundWork.Designer.cs">
<DependentUpon>FormBackgroundWork.cs</DependentUpon>
</Compile>
<Compile Include="Core\TweetDeckBridge.cs" />
<Compile Include="Core\Handling\TweetDeckBridge.cs" />
<Compile Include="Migration\FormMigrationQuestion.cs">
<SubType>Form</SubType>
</Compile>