1 write to _viewSortButtons
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
3851
_viewSortButtons
= new ToolStripButton[3];
21 references to _viewSortButtons
System.Windows.Forms (21)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (21)
840
newButton =
_viewSortButtons
![CategorySortButtonIndex];
844
newButton =
_viewSortButtons
![AlphaSortButtonIndex];
848
newButton =
_viewSortButtons
![NoSortButtonIndex];
3051
if (sender ==
_viewSortButtons
![_selectedViewSort])
3053
_viewSortButtons
[_selectedViewSort].Checked = true;
3058
_viewSortButtons
[_selectedViewSort].Checked = false;
3062
for (index = 0; index <
_viewSortButtons
.Length; index++)
3064
if (
_viewSortButtons
[index] == sender)
3071
_viewSortButtons
[_selectedViewSort].Checked = true;
3762
if (
_viewSortButtons
is null)
3767
if (state >= (_tabs.Count *
_viewSortButtons
.Length))
3773
state = (_tabs.Count *
_viewSortButtons
.Length) - 1;
3784
int viewTypes =
_viewSortButtons
.Length;
3791
Debug.Assert(view <
_viewSortButtons
.Length, "Can't select view type > 1");
3794
OnViewSortButtonClick(
_viewSortButtons
[view], EventArgs.Empty);
3849
if (
_viewSortButtons
is null || fullRebuild)
3874
_viewSortButtons
[AlphaSortButtonIndex] = CreatePushButton(
3879
_viewSortButtons
[CategorySortButtonIndex] = CreatePushButton(
3886
_viewSortButtons
[NoSortButtonIndex] = CreatePushButton(
3892
_viewSortButtons
[NoSortButtonIndex].Visible = false;
3895
buttonList.AddRange(
_viewSortButtons
);