30 references to DataManager
System.Windows.Forms (30)
winforms\Managed\System\WinForms\ComboBox.cs (12)
2724
if (this.
DataManager
!= null &&
DataManager
.Position != SelectedIndex) {
2727
this.
DataManager
.Position = this.SelectedIndex;
3030
if (this.
DataManager
!= null && this.
DataManager
.Count != -1) {
3031
newItems = new object[this.
DataManager
.Count];
3033
newItems[i] = this.
DataManager
[i];
3055
if (this.
DataManager
!= null)
3058
this.SelectedIndex = this.
DataManager
.Position;
3295
if (this.
DataManager
!= null) {
3307
SendMessage(NativeMethods.CB_SETCURSEL,
DataManager
.Position, 0);
3310
selectedIndex =
DataManager
.Position;
winforms\Managed\System\WinForms\ListBox.cs (13)
1895
if (this.
DataManager
!= null &&
DataManager
.Position != SelectedIndex) {
1901
this.
DataManager
.Position = this.SelectedIndex;
1939
if (SelectionMode != SelectionMode.None && this.
DataManager
!= null)
1940
this.SelectedIndex = this.
DataManager
.Position;
1993
if (this.
DataManager
!= null && this.
DataManager
.Count != -1) {
1994
newItems = new object[this.
DataManager
.Count];
1996
newItems[i] = this.
DataManager
[i];
2013
if (this.
DataManager
!= null) {
2015
this.SelectedIndex = this.
DataManager
.Position;
2093
if (this.
DataManager
!= null) {
2105
SendMessage(NativeMethods.LB_SETCURSEL,
DataManager
.Position, 0);
winforms\Managed\System\WinForms\ListControl.cs (5)
169
this.
DataManager
!= null &&
171
PropertyDescriptorCollection props = this.
DataManager
.GetItemProperties();
754
IList currentList = this.
DataManager
!= null ? this.
DataManager
.List : null;
755
bool currentManagerIsNull = this.
DataManager
== null;