2 writes to _data
PresentationFramework (2)
src\Framework\System\Windows\Controls\Grid.cs (2)
341
if (_data == null) {
_data
= new ExtendedData(); }
356
if (_data == null) {
_data
= new ExtendedData(); }
12 references to _data
PresentationFramework (12)
src\Framework\System\Windows\Controls\Grid.cs (12)
341
if (
_data
== null) { _data = new ExtendedData(); }
342
if (
_data
.ColumnDefinitions == null) {
_data
.ColumnDefinitions = new ColumnDefinitionCollection(this); }
344
return (
_data
.ColumnDefinitions);
356
if (
_data
== null) { _data = new ExtendedData(); }
357
if (
_data
.RowDefinitions == null) {
_data
.RowDefinitions = new RowDefinitionCollection(this); }
359
return (
_data
.RowDefinitions);
731
if (
_data
== null)
839
Invariant.Assert(
_data
!= null);
861
Invariant.Assert(
_data
!= null);
3303
get { return (
_data
); }