'宣言 Public Property DataErrorDisplayMode As DataErrorDisplayMode
public DataErrorDisplayMode DataErrorDisplayMode {get; set;}
デフォルトでは、セルおよびレコードのデータ エラーを表示しません。SupportDataErrorInfo プロパティを設定して、この機能を有効にできます。機能が有効化されている場合、DataErrorDisplayMode プロパティはデータ エラー情報を表示する方法を制御します。デフォルトでは、セルおよびレコードのデータ エラーを表示するために、セルまたはレコードのセレクターでデータ エラー アイコンが表示されます。このプロパティを使用して、データ エラーを表示する方法を制御できます。
Imports Infragistics.Windows Imports Infragistics.Windows.Controls Imports Infragistics.Windows.Editors Imports Infragistics.Windows.DataPresenter Imports Infragistics.Windows.DataPresenter.Events Private Sub Window1_Loaded(ByVal sender As Object, ByVal e As RoutedEventArgs) _dataPresenter.FieldLayoutSettings.SupportDataErrorInfo = SupportDataErrorInfo.RecordsAndCells _dataPresenter.FieldLayoutSettings.DataErrorDisplayMode = DataErrorDisplayMode.ErrorIconAndHighlight End Sub
using Infragistics.Windows; using Infragistics.Windows.Controls; using Infragistics.Windows.Editors; using Infragistics.Windows.DataPresenter; using Infragistics.Windows.DataPresenter.Events; public void Window1_Loaded( object sender, RoutedEventArgs e ) { _dataPresenter.FieldLayoutSettings.SupportDataErrorInfo = SupportDataErrorInfo.RecordsAndCells; _dataPresenter.FieldLayoutSettings.DataErrorDisplayMode = DataErrorDisplayMode.ErrorIconAndHighlight; }