AutoValidate 列挙体とは? わかりやすく解説

AutoValidate 列挙体

メモ : この列挙体は、.NET Framework version 2.0新しく追加されたものです。

コントロールユーザー入力フォーカスなくなったときのコントロール検証方法決定します

名前空間: System.Windows.Forms
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)
構文構文

public enum AutoValidate
public enum class AutoValidate
public enum AutoValidate
public enum AutoValidate
メンバメンバ
 メンバ説明
.NET Compact Framework によるサポートDisable暗黙的な検証発生しません。この値を設定しても、Validate または ValidateChildren明示的な呼び出しには影響ありません。 
.NET Compact Framework によるサポートEnableAllowFocusChange暗黙的な検証発生しますが、検証失敗した場合も、フォーカス新しコントロール移ります検証失敗した場合、Validated イベント発生しません。 
.NET Compact Framework によるサポートEnablePreventFocusChangeコントロールフォーカスがなくなると、暗黙的な検証発生します。 
.NET Compact Framework によるサポートInheritコントロールは、そのコントロールコンテナ (フォームや他のコントロールなど) から AutoValidate 動作継承しますコンテナ コントロールない場合既定値は EnablePreventFocusChange です。 
解説解説
使用例使用例

フォーム、およびそのフォーム含まれているすべてのコントロール暗黙的な検証オフにし、代わりにマウス ボタンクリックされたときに、手動フォームすべてのコントロール検証実行するコード例次に示します

Imports System
Imports System.Drawing
Imports System.Windows.Forms

Public Class Form1
    Inherits Form

    'Entry point which delegates to C-style main Private Function
    Public Overloads Shared
 Sub Main()
        Main(System.Environment.GetCommandLineArgs())
    End Sub

    Private Overloads Shared
 Sub Main(ByVal args() As
 String)
        Application.EnableVisualStyles()
        Application.Run(New Form1())
    End Sub 'Main

    Private WithEvents FirstNameBox, LastNameBox
 As TextBox
    Private WithEvents ValidateButton As
 Button
    Private FlowLayout1 As FlowLayoutPanel

    Private Sub New()
    End Sub

    Sub Form1_Load(ByVal sender As
 Object, ByVal e As EventArgs)
 Handles Me.Load
        ' Turn off validation when a control loses focus. This will
 be inherited by child
        ' controls on the form, enabling us to validate the entire form
 when the 
        ' button is clicked instead of one control at a time.
        Me.AutoValidate = AutoValidate.Disable

        FlowLayout1 = New FlowLayoutPanel()
        FlowLayout1.Dock = DockStyle.Fill

        FirstNameBox = New TextBox()
        FirstNameBox.Name = "FirstNameBox"
        FirstNameBox.Location = New Point(10, 10)
        FirstNameBox.Size = New Size(75, FirstNameBox.Size.Height)
        FirstNameBox.CausesValidation = True
        FlowLayout1.Controls.Add(FirstNameBox)

        LastNameBox = New TextBox()
        LastNameBox.Name = "LastNameBox"
        LastNameBox.Location = New Point(90, 10)
        LastNameBox.Size = New Size(75, LastNameBox.Size.Height)
        LastNameBox.CausesValidation = True
        FlowLayout1.Controls.Add(LastNameBox)

        ValidateButton = New Button()
        ValidateButton.Text = "Validate"
        ValidateButton.Location = New Point(170, 10)
        ValidateButton.Size = New Size(75, ValidateButton.Size.Height)
        FlowLayout1.Controls.Add(ValidateButton)

        Me.Text = "Test Validation"

        Me.Controls.Add(FlowLayout1)
    End Sub


    Sub FirstNameBox_Validating(ByVal sender
 As Object, ByVal e As
 System.ComponentModel.CancelEventArgs) Handles FirstNameBox.Validating
        If FirstNameBox.Text.Length = 0 Then
            e.Cancel = True
        Else
            e.Cancel = False
        End If
    End Sub


    Sub LastNameBox_Validating(ByVal sender
 As Object, ByVal e As
 System.ComponentModel.CancelEventArgs) Handles LastNameBox.Validating
        e.Cancel = False
    End Sub


    Sub ValidateButton_Click(ByVal sender As
 Object, ByVal e As EventArgs)
 Handles ValidateButton.Click
        If ValidateChildren() Then
            MessageBox.Show("Validation succeeded!")
        Else
            MessageBox.Show("Validation failed.")
        End If
    End Sub
End Class
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Drawing;
using System.Text;

namespace TestValidation
{
    class Form1 : Form
    {
        private static void
 Main(string[] args)
        {
            Application.EnableVisualStyles();
            Application.Run(new Form1());
        }

        private TextBox firstNameBox, lastNameBox;
        private Button validateButton;
        private FlowLayoutPanel flowLayout1;

        private Form1()
        {
            this.Load += new EventHandler(Form1_Load);
        }

        void Form1_Load(object sender, EventArgs e)
        {
            // Turn off validation when a control loses focus. This
 will be inherited by child
            // controls on the form, enabling us to validate the entire
 form when the 
            // button is clicked instead of one control at a time.
            this.AutoValidate = AutoValidate.Disable;

            flowLayout1 = new FlowLayoutPanel();
            flowLayout1.Dock = DockStyle.Fill;
            flowLayout1.Name = "flowLayout1";

            firstNameBox = new TextBox();
            firstNameBox.Name = "firstNameBox";
            firstNameBox.Size = new Size(75, firstNameBox.Size.Height);
            firstNameBox.CausesValidation = true;
            firstNameBox.Validating += new System.ComponentModel.CancelEventHandler(firstNameBox_Validating);
            flowLayout1.Controls.Add(firstNameBox);

            lastNameBox = new TextBox();
            lastNameBox.Name = "lastNameBox";
            lastNameBox.Size = new Size(75, lastNameBox.Size.Height);
            lastNameBox.CausesValidation = true;
            lastNameBox.Validating += new System.ComponentModel.CancelEventHandler(lastNameBox_Validating);
            flowLayout1.Controls.Add(lastNameBox);

            validateButton = new Button();
            validateButton.Text = "Validate";
            // validateButton.Location = new Point(170, 10);
            validateButton.Size = new Size(75, validateButton.Size.Height);
            validateButton.Click += new EventHandler(validateButton_Click);
            flowLayout1.Controls.Add(validateButton);

            this.Controls.Add(flowLayout1);

            this.Text = "Test Validation";
        }

        void firstNameBox_Validating(object sender, System.ComponentModel.CancelEventArgs
 e)
        {
            if (firstNameBox.Text.Length == 0)
            {
                e.Cancel = true;
            }
            else
            {
                e.Cancel = false;
            }
        }

        void lastNameBox_Validating(object sender, System.ComponentModel.CancelEventArgs
 e)
        {
            e.Cancel = false;
        }

        void validateButton_Click(object sender, EventArgs e)
        {
            if (this.ValidateChildren())
            {
                MessageBox.Show("Validation succeeded!");
            }
            else
            {
                MessageBox.Show("Validation failed.");
            }
        }
    }
}
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
System.Windows.Forms 名前空間
ValidateChildren
AutoValidate


このページでは「.NET Framework クラス ライブラリ リファレンス」からAutoValidate 列挙体を検索した結果を表示しています。
Weblioに収録されているすべての辞書からAutoValidate 列挙体を検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からAutoValidate 列挙体を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「AutoValidate 列挙体」の関連用語

AutoValidate 列挙体のお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



AutoValidate 列挙体のページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2024 Microsoft.All rights reserved.

©2024 GRAS Group, Inc.RSS