2 types derived from WizardPanel
System.Web.Entity.Design (2)
System\Data\WebControls\Design\EntityDataSourceConfigureObjectContextPanel.cs (1)
18
internal partial class EntityDataSourceConfigureObjectContextPanel :
WizardPanel
System\Data\WebControls\Design\EntityDataSourceDataSelectionPanel.cs (1)
18
internal partial class EntityDataSourceDataSelectionPanel :
WizardPanel
18 references to WizardPanel
System.Web.Entity.Design (18)
System\Data\WebControls\Design\EntityDataSourceWizardForm.cs (1)
49
SetPanels(new
WizardPanel
[] {
System\Data\WebControls\Design\Util\WizardForm.cs (13)
37
System.Collections.Generic.Stack<
WizardPanel
> _panelHistory;
38
private
WizardPanel
_initialPanel;
46
_panelHistory = new System.Collections.Generic.Stack<
WizardPanel
>();
238
WizardPanel
currentPanel = _panelHistory.Peek();
242
WizardPanel
nextPanel = currentPanel.NextPanel;
282
WizardPanel
currentPanel = _panelHistory.Peek();
286
WizardPanel
[] panels = _panelHistory.ToArray();
288
foreach (
WizardPanel
panel in panels)
328
WizardPanel
currentPanel = _panelHistory.Pop();
329
WizardPanel
backPanel = _panelHistory.Peek();
340
internal void RegisterPanel(
WizardPanel
panel)
354
protected void SetPanels(
WizardPanel
[] panels)
372
private void ShowPanel(
WizardPanel
panel)
System\Data\WebControls\Design\Util\WizardPanel.cs (2)
29
private
WizardPanel
_nextPanel;
70
public
WizardPanel
NextPanel
System\Data\WebControls\Design\Util\WizardPanelChangingEventArgs.cs (2)
24
private
WizardPanel
_currentPanel;
28
public WizardPanelChangingEventArgs(
WizardPanel
currentPanel)