Initial support for uwp app #198

1. basic support, better than nothing...
2. thanks great contribution from @talynone
3. #198
This commit is contained in:
bao-qian
2016-08-18 01:16:40 +01:00
parent e690bae7d1
commit 01e812aebf
7 changed files with 405 additions and 34 deletions

View File

@@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Windows.Media;
namespace Wox.Plugin
{
@@ -13,7 +14,7 @@ namespace Wox.Plugin
public string Title { get; set; }
public string SubTitle { get; set; }
public string IcoPath
public string IcoPath
{
get { return _icoPath; }
set
@@ -29,6 +30,11 @@ namespace Wox.Plugin
}
}
public delegate ImageSource IconDelegate();
public IconDelegate Icon;
/// <summary>
/// return true to hide wox after select result
/// </summary>