odinsacred
odinsacred
Thanks for answer! Yes, it's about `int[,]`. I'm novice in WPF, so I'm not completely understood this `public ObservableCollection Values { get; } = new ObservableCollection {1, 2, 3};` This...
What I want: view and edit values in HEX format, in addition I need to set names of rows and columns. Today I'm readed issue "Scientific Notation for Numeric Data",...
Now I'm try do this: (but it's not working) C# code: ``` public ObservableCollection Values { get => this.values; set { if (Equals(value, this.values)) { return; } this.values = value;...
And so, should I hope for comlete example, or I must create it by myself?
Ok, anyway, thanks for support))
@FoggyFinder Thank you very much!
Hello! Can anybody help me? I wanna bind 2D int array to DataGrid, but I don't understand how to create TwoWay binding. Now I'm use this code: ``` ``` Also...