更新
This commit is contained in:
@@ -2,13 +2,13 @@
|
||||
|
||||
namespace ShrlAlgoToolkit.Mvvm.Attach;
|
||||
|
||||
public class TextSearch
|
||||
public class TextSearchAssist
|
||||
{
|
||||
// Using a DependencyProperty as the backing store for IsTextMatch. This enables animation, styling, binding, etc...
|
||||
public static readonly DependencyProperty IsTextMatchProperty = DependencyProperty.RegisterAttached(
|
||||
"IsTextMatch",
|
||||
typeof(bool),
|
||||
typeof(TextSearch),
|
||||
typeof(TextSearchAssist),
|
||||
new UIPropertyMetadata(false)
|
||||
);
|
||||
|
||||
@@ -16,7 +16,7 @@ public class TextSearch
|
||||
public static readonly DependencyProperty SearchValueProperty = DependencyProperty.RegisterAttached(
|
||||
"SearchValue",
|
||||
typeof(string),
|
||||
typeof(TextSearch),
|
||||
typeof(TextSearchAssist),
|
||||
new FrameworkPropertyMetadata(string.Empty, FrameworkPropertyMetadataOptions.Inherits)
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user