private void buttonAnalysis_Click(object sender, EventArgs e) { var dlg = new AnalysisForm(listItemTypeName, listTypeName, iEditableObject, iNotifyPropertyChanged, propertyChangeEvents, listChanged, iRaiseItemChangedEvents, view.List.IsReadOnly, view.List.IsFixedSize, synced); dlg.ShowDialog(); }
private void buttonAnalysis_Click(object sender, EventArgs e) { AnalysisForm dlg = new AnalysisForm(this.listItemTypeName, this.listTypeName, this.iEditableObject, this.iNotifyPropertyChanged, this.propertyChangeEvents, this.listChanged, this.iRaiseItemChangedEvents, this.view.List.IsReadOnly, false, false); dlg.ShowDialog(); }
private void buttonAnalysis_Click(object sender, EventArgs e) { AnalysisForm dlg = new AnalysisForm(this.listItemTypeName, this.listTypeName, this.iEditableObject, this.iNotifyPropertyChanged, this.propertyChangeEvents, this.listChanged, this.iRaiseItemChangedEvents, this.view.List.IsReadOnly, this.view.List.IsFixedSize, this.synced); dlg.ShowDialog(); }