This commit is contained in:
ShrlAlgo
2025-07-11 09:20:23 +08:00
parent c7b104f44f
commit 4d35cadb56
840 changed files with 102347 additions and 11595 deletions

View File

@@ -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)
);