17 references to Views
System.Web (17)
UI\WebControls\MultiView.cs (16)
75
if (
Views
.Count == 0 && ControlState < ControlState.FrameworkInitialized /* Whidbey 113333 */) {
79
if (value >=
Views
.Count) {
81
SR.GetString(SR.MultiView_ActiveViewIndex_equal_or_greater_than_count, value,
Views
.Count));
90
if (originalIndex != value && originalIndex != -1 && originalIndex <
Views
.Count) {
91
Views
[originalIndex].Active = false;
93
Views
[originalIndex].OnDeactivate(EventArgs.Empty);
96
if (originalIndex != value &&
Views
.Count != 0 && value != -1) {
97
Views
[value].Active = true;
99
Views
[value].OnActivate(EventArgs.Empty);
187
if (activeViewIndex >=
Views
.Count) {
193
View view =
Views
[activeViewIndex];
206
for (int i=0; i<
Views
.Count; ++i) {
207
View view =
Views
[i];
265
if (ActiveViewIndex <
Views
.Count - 1) {
325
if (((View)ctl).Active && ActiveViewIndex <
Views
.Count) {
357
int index =
Views
.IndexOf (view);
UI\WebControls\Wizard.cs (1)
3543
return _wizard.MultiView.
Views
;