1 write to _viewSortButtons
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
3896
_viewSortButtons
= new ToolStripButton[3];
21 references to _viewSortButtons
System.Windows.Forms (21)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (21)
885
newButton =
_viewSortButtons
![CategorySortButtonIndex];
889
newButton =
_viewSortButtons
![AlphaSortButtonIndex];
893
newButton =
_viewSortButtons
![NoSortButtonIndex];
3096
if (sender ==
_viewSortButtons
![_selectedViewSort])
3098
_viewSortButtons
[_selectedViewSort].Checked = true;
3103
_viewSortButtons
[_selectedViewSort].Checked = false;
3107
for (index = 0; index <
_viewSortButtons
.Length; index++)
3109
if (
_viewSortButtons
[index] == sender)
3116
_viewSortButtons
[_selectedViewSort].Checked = true;
3807
if (
_viewSortButtons
is null)
3812
if (state >= (_tabs.Count *
_viewSortButtons
.Length))
3818
state = (_tabs.Count *
_viewSortButtons
.Length) - 1;
3829
int viewTypes =
_viewSortButtons
.Length;
3836
Debug.Assert(view <
_viewSortButtons
.Length, "Can't select view type > 1");
3839
OnViewSortButtonClick(
_viewSortButtons
[view], EventArgs.Empty);
3894
if (
_viewSortButtons
is null || fullRebuild)
3919
_viewSortButtons
[AlphaSortButtonIndex] = CreatePushButton(
3924
_viewSortButtons
[CategorySortButtonIndex] = CreatePushButton(
3931
_viewSortButtons
[NoSortButtonIndex] = CreatePushButton(
3937
_viewSortButtons
[NoSortButtonIndex].Visible = false;
3940
buttonList.AddRange(
_viewSortButtons
);