implement WPM Plugin

This commit is contained in:
qianlifeng
2014-03-13 22:31:44 +08:00
parent 49c151c1b4
commit 091aba7aad
9 changed files with 323 additions and 61 deletions

View File

@@ -41,7 +41,6 @@ namespace Wox
private NotifyIcon notifyIcon;
private bool queryHasReturn;
private ToolTip toolTip = new ToolTip();
public MainWindow()
{
InitializeComponent();
@@ -420,8 +419,18 @@ namespace Wox
toolTip.IsOpen = true;
}
public void StartLoadingBar()
{
Dispatcher.Invoke(new Action(StartProgress));
}
public void StopLoadingBar()
{
Dispatcher.Invoke(new Action(StopProgress));
}
#endregion
}
}