GrapeCity.ActiveReports.Design.Win.v9 アセンブリ > GrapeCity.ActiveReports.Design 名前空間 : DataSourceIconClickEventArgs クラス |
'宣言 Public Class DataSourceIconClickEventArgs Inherits System.EventArgs
public class DataSourceIconClickEventArgs : System.EventArgs
//DataSourceClickイベントハンドラを作成します。 this.arDesigner.DataSourceIconClick += new DataSourceIconClickEventHandler(arDesigner_DataSourceIconClick); //ユーザーによりデータソースアイコンのクリックを応答するイベントハンドリングメソッドを作成します。 //CancelをTrueに設定し、デフォルトのデータソースを表示しないように設定します。 private void arDesigner_DataSourceIconClick(object sender, DataSourceIconClickArgs e) { e.Cancel = true; Form f = new Form(); f.ShowDialog(this); // ユーザーの定義によってデータソースを変更するカスタムコードを追加します。 }
'DataSourceClickイベントハンドラを作成します。 Me.arDesigner.DataSourceIconClick += New DataSourceIconClickEventHandler(arDesigner_DataSourceIconClick) 'ユーザーによりデータソースアイコンのクリックを応答するイベントハンドリングメソッドを作成します。 'CancelをTrueに設定し、デフォルトのデータソースを表示しないように設定します。 Private Sub arDesigner_DataSourceIconClick(ByVal sender As Object, ByVal e As DataSourceIconClickArgs) e.Cancel = True Dim f As Form = New Form() f.ShowDialog(Me) 'ユーザーの定義によってデータソースを変更するカスタムコードを追加します。 End Sub
System.Object
System.EventArgs
GrapeCity.ActiveReports.Design.DataSourceIconClickEventArgs