【WPF】使用ObservableCollection解决:累积计数x与实际计数x不相同

使用观察模式和集合

错误代码

csharp 复制代码
public List<IPAddress> iPAddressDevices = new List<IPAddress>();
        public List<IPAddress> IPAddressDevices { 
            get => iPAddressDevices; 
            set {
                iPAddressDevices = value;
                RaisePropertyChanged(nameof(IPAddressDevices));
            }
        }

正确代码

csharp 复制代码
public ObservableCollection<IPAddress> iPAddressDevices { get; set; }

在你的数据上下文类中,将IPAddressDevices属性改为ObservableCollection<IPAddress>类型。ObservableCollection类在集合发生变化时会触发通知,从而使绑定能够及时更新。

csharp 复制代码
public class YourViewModel
{
    public ObservableCollection<IPAddress> IPAddressDevices { get; set; }

    public YourViewModel()
    {
        IPAddressDevices = new ObservableCollection<IPAddress>();

        // 添加示例数据
        IPAddressDevices.Add(new IPAddress(/*IP地址参数*/));
        // 添加更多数据...
    }
}
相关推荐
明耀11 小时前
WPF TabControl 设置item不能点击
wpf
军训猫猫头13 小时前
20.抽卡只有金,带保底(WPF) C#
ui·c#·wpf
明耀13 小时前
WPF 设置平均布局 如果隐藏的话,能够自动扩展
wpf
晚安苏州1 天前
WPF DataTemplate 数据模板
wpf
甜甜不吃芥末2 天前
WPF依赖属性详解
wpf
Hat_man_2 天前
WPF制作图片闪烁的自定义控件
wpf
晚安苏州3 天前
WPF Binding 绑定
wpf·wpf binding·wpf 绑定
wangnaisheng3 天前
【WPF】RenderTargetBitmap的使用
wpf
dotent·4 天前
WPF 完美解决改变指示灯的颜色
wpf
orangapple5 天前
WPF 用Vlc.DotNet.Wpf实现视频播放、停止、暂停功能
wpf·音视频