2 writes to _data
PresentationFramework (2)
System\Windows\Controls\Grid.cs (2)
268
if (_data == null) {
_data
= new ExtendedData(); }
283
if (_data == null) {
_data
= new ExtendedData(); }
12 references to _data
PresentationFramework (12)
System\Windows\Controls\Grid.cs (12)
268
if (
_data
== null) { _data = new ExtendedData(); }
269
if (
_data
.ColumnDefinitions == null) {
_data
.ColumnDefinitions = new ColumnDefinitionCollection(this); }
271
return (
_data
.ColumnDefinitions);
283
if (
_data
== null) { _data = new ExtendedData(); }
284
if (
_data
.RowDefinitions == null) {
_data
.RowDefinitions = new RowDefinitionCollection(this); }
286
return (
_data
.RowDefinitions);
656
if (
_data
== null)
758
Invariant.Assert(
_data
!= null);
780
Invariant.Assert(
_data
!= null);
3228
get { return (
_data
); }