1 write to _viewSortButtons
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
3858
_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];
3052
if (sender ==
_viewSortButtons
![_selectedViewSort])
3054
_viewSortButtons
[_selectedViewSort].Checked = true;
3059
_viewSortButtons
[_selectedViewSort].Checked = false;
3063
for (index = 0; index <
_viewSortButtons
.Length; index++)
3065
if (
_viewSortButtons
[index] == sender)
3072
_viewSortButtons
[_selectedViewSort].Checked = true;
3769
if (
_viewSortButtons
is null)
3774
if (state >= (_tabs.Count *
_viewSortButtons
.Length))
3780
state = (_tabs.Count *
_viewSortButtons
.Length) - 1;
3791
int viewTypes =
_viewSortButtons
.Length;
3798
Debug.Assert(view <
_viewSortButtons
.Length, "Can't select view type > 1");
3801
OnViewSortButtonClick(
_viewSortButtons
[view], EventArgs.Empty);
3856
if (
_viewSortButtons
is null || fullRebuild)
3881
_viewSortButtons
[AlphaSortButtonIndex] = CreatePushButton(
3886
_viewSortButtons
[CategorySortButtonIndex] = CreatePushButton(
3893
_viewSortButtons
[NoSortButtonIndex] = CreatePushButton(
3899
_viewSortButtons
[NoSortButtonIndex].Visible = false;
3902
buttonList.AddRange(
_viewSortButtons
);