diff --git a/Flow.Launcher/Resources/Controls/Card.xaml b/Flow.Launcher/Resources/Controls/Card.xaml
index 55a1d8ec5..4b43bf06c 100644
--- a/Flow.Launcher/Resources/Controls/Card.xaml
+++ b/Flow.Launcher/Resources/Controls/Card.xaml
@@ -12,16 +12,24 @@
mc:Ignorable="d">
-
+
diff --git a/Flow.Launcher/Resources/Controls/Card.xaml.cs b/Flow.Launcher/Resources/Controls/Card.xaml.cs
index 17066b725..0ed3e1a48 100644
--- a/Flow.Launcher/Resources/Controls/Card.xaml.cs
+++ b/Flow.Launcher/Resources/Controls/Card.xaml.cs
@@ -59,5 +59,13 @@ namespace Flow.Launcher.Resources.Controls
public static readonly DependencyProperty AdditionalContentProperty =
DependencyProperty.Register("AdditionalContent", typeof(object), typeof(Card),
new PropertyMetadata(null));
+ public object Type
+ {
+ get { return (object)GetValue(TypeProperty); }
+ set { SetValue(TypeProperty, value); }
+ }
+ public static readonly DependencyProperty TypeProperty =
+ DependencyProperty.Register("Type", typeof(object), typeof(Card),
+ new PropertyMetadata(null));
}
}
diff --git a/Flow.Launcher/Resources/Controls/ExCard.xaml b/Flow.Launcher/Resources/Controls/ExCard.xaml
new file mode 100644
index 000000000..ba8187949
--- /dev/null
+++ b/Flow.Launcher/Resources/Controls/ExCard.xaml
@@ -0,0 +1,313 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Flow.Launcher/Resources/Controls/ExCard.xaml.cs b/Flow.Launcher/Resources/Controls/ExCard.xaml.cs
new file mode 100644
index 000000000..a2c78d44f
--- /dev/null
+++ b/Flow.Launcher/Resources/Controls/ExCard.xaml.cs
@@ -0,0 +1,69 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+
+namespace Flow.Launcher.Resources.Controls
+{
+ public partial class ExCard : UserControl
+ {
+ public ExCard()
+ {
+ InitializeComponent();
+ }
+ public string Title
+ {
+ get { return (string)GetValue(TitleValueProperty); }
+ set { SetValue(TitleValueProperty, value); }
+ }
+ public static readonly DependencyProperty TitleValueProperty =
+ DependencyProperty.Register("Title", typeof(string), typeof(ExCard), new PropertyMetadata(string.Empty));
+
+ public string Sub
+ {
+ get { return (string)GetValue(SubValueProperty); }
+ set { SetValue(SubValueProperty, value); }
+ }
+ public static readonly DependencyProperty SubValueProperty =
+ DependencyProperty.Register("Sub", typeof(string), typeof(ExCard), new PropertyMetadata(string.Empty));
+
+ public string Icon
+ {
+ get { return (string)GetValue(IconValueProperty); }
+ set { SetValue(IconValueProperty, value); }
+ }
+ public static readonly DependencyProperty IconValueProperty =
+ DependencyProperty.Register("Icon", typeof(string), typeof(ExCard), new PropertyMetadata(string.Empty));
+
+ ///
+ /// Gets or sets additional content for the UserControl
+ ///
+ public object AdditionalContent
+ {
+ get { return (object)GetValue(AdditionalContentProperty); }
+ set { SetValue(AdditionalContentProperty, value); }
+ }
+ public static readonly DependencyProperty AdditionalContentProperty =
+ DependencyProperty.Register("AdditionalContent", typeof(object), typeof(ExCard),
+ new PropertyMetadata(null));
+
+ public object SideContent
+ {
+ get { return (object)GetValue(SideContentProperty); }
+ set { SetValue(SideContentProperty, value); }
+ }
+ public static readonly DependencyProperty SideContentProperty =
+ DependencyProperty.Register("SideContent", typeof(object), typeof(ExCard),
+ new PropertyMetadata(null));
+ }
+}
diff --git a/Flow.Launcher/SettingWindow.xaml b/Flow.Launcher/SettingWindow.xaml
index 4aed343b7..eff9532a8 100644
--- a/Flow.Launcher/SettingWindow.xaml
+++ b/Flow.Launcher/SettingWindow.xaml
@@ -2636,6 +2636,24 @@
Text="{DynamicResource hotkeys}"
TextAlignment="left" />
+
+
+
+
+
+
+