パスワード設定フォーム

Namespace: FVIL.Forms
Assembly: FVILforms (in FVILforms.dll) Version: 3.1.0.0 (3.1.0.9)

Syntax

C#
public class PasswordForm : Form
Visual Basic
Public Class PasswordForm
	Inherits Form

Remarks

パスワードの変更を行う際に使用するフォームです。 以下の項目を入力するインターフェースを提供します。
  • 旧パスワード
  • 新パスワード
  • 新パスワード(確認)

C# Copy imageCopy
FVIL.Forms.PasswordForm form = new FVIL.Forms.PasswordForm();
form.Password = "current";
if (form.ShowDialog(this) == DialogResult.OK)
{
    Console.WriteLine("Password    = {0}", form.Password);
    Console.WriteLine("PasswordNew = {0}", form.PasswordNew);
}

出力結果:
	Password    = current
	PasswordNew = new
	

Inheritance Hierarchy

System..::..Object
System..::..MarshalByRefObject
System.ComponentModel..::..Component
System.Windows.Forms..::..Control
System.Windows.Forms..::..ScrollableControl
System.Windows.Forms..::..ContainerControl
System.Windows.Forms..::..Form
FVIL.Forms..::..PasswordForm

See Also