Skip to content

Instantly share code, notes, and snippets.

@talemon
talemon / MainViewModel.cs
Created November 7, 2025 10:26
Wpf Dynamic Filtering
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Windows.Data;
namespace WpfCollectionFiltering.ViewModels;
public class MainViewModel : INotifyPropertyChanged
{
private string _filterInput = string.Empty;