4 writes to _data
PresentationFramework (4)
System\Windows\Controls\Grid.cs (4)
269
if (_data == null) {
_data
= new ExtendedData(); }
286
_data
??= new ExtendedData();
311
if (_data == null) {
_data
= new ExtendedData(); }
328
_data
??= new ExtendedData();
18 references to _data
PresentationFramework (18)
System\Windows\Controls\Grid.cs (18)
269
if (
_data
== null) { _data = new ExtendedData(); }
270
if (
_data
.ColumnDefinitions == null) {
_data
.ColumnDefinitions = new ColumnDefinitionCollection(this); }
272
return (
_data
.ColumnDefinitions);
287
if (
_data
.ColumnDefinitions is { } columnDefinitions)
292
_data
.ColumnDefinitions = null;
297
_data
.ColumnDefinitions = value;
311
if (
_data
== null) { _data = new ExtendedData(); }
312
if (
_data
.RowDefinitions == null) {
_data
.RowDefinitions = new RowDefinitionCollection(this); }
314
return (
_data
.RowDefinitions);
329
if (
_data
.RowDefinitions is { } rowDefinitions)
334
_data
.RowDefinitions = null;
339
_data
.RowDefinitions = value;
710
if (
_data
== null)
812
Invariant.Assert(
_data
!= null);
834
Invariant.Assert(
_data
!= null);
3282
get { return (
_data
); }