public fmRDLCWizard() { InitializeComponent(); FClientData = new TRDLCWizardData(this); //PrepareWizardService(); lvwColumnSorterViewSrc = new ListViewColumnSorter(); lvwColumnSorterViewDes = new ListViewColumnSorter(); lvwColumnSorterMasterSrc = new ListViewColumnSorter(); lvwColumnSorterMasterDes = new ListViewColumnSorter(); lvwColumnSorterDetail = new ListViewColumnSorter(); this.lvViewSrcField.ListViewItemSorter = lvwColumnSorterViewSrc; this.lvViewDesField.ListViewItemSorter = lvwColumnSorterViewDes; this.lvMasterSrcField.ListViewItemSorter = lvwColumnSorterMasterSrc; this.lvMasterDesField.ListViewItemSorter = lvwColumnSorterMasterDes; this.lvSelectedFields.ListViewItemSorter = lvwColumnSorterDetail; }
public TRDLCWizardGenerator(TRDLCWizardData ClientData, DTE2 dte2, AddIn aAddIn) { FClientData = ClientData; FDTE2 = dte2; FAddIn = aAddIn; FSYS_REFVAL = new DataSet(); FWebDataSourceList = new List<WebDataSource>(); FWebRefValList = new List<WebRefVal>(); FAjaxRefValList = new List<AjaxTools.AjaxRefVal>(); FWebRefValListPage = new List<WebRefVal>(); FWebDefaultList = new List<WebDefault>(); FWebValidateList = new List<WebValidate>(); FExtComboBoxList = new List<ExtComboBox>(); FMyWebDropDownList = new List<MyWebDropDownList>(); FWebDateTimePickerList = new List<WebDateTimePicker>(); FAjaxDateTimePickerList = new List<AjaxTools.AjaxDateTimePicker>(); FWebValidateBoxList = new List<WebValidateBox>(); FWebCheckBoxList = new List<System.Web.UI.WebControls.CheckBox>(); FWebTextBoxList = new List<System.Web.UI.WebControls.TextBox>(); FLabelList = new List<System.Web.UI.WebControls.Label>(); //???FTemplatePath = Path.GetDirectoryName(FAddIn.Object.GetType().Assembly.Location) + "\\Templates\\"; }