ControlDesigner.ReadOnly プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
注意事項
The recommended alternative is to inherit from ContainerControlDesigner instead and to use an EditableDesignerRegion. Regions allow for better control of the content in the designer. http://go.microsoft.com/fwlink/?linkid=14202
コントロールのプロパティがデザイン時に読み取り専用かどうかを示す値を取得または設定します。
public:
property bool ReadOnly { bool get(); void set(bool value); };
public bool ReadOnly { get; set; }
[System.Obsolete("The recommended alternative is to inherit from ContainerControlDesigner instead and to use an EditableDesignerRegion. Regions allow for better control of the content in the designer. http://go.microsoft.com/fwlink/?linkid=14202")]
public bool ReadOnly { get; set; }
member this.ReadOnly : bool with get, set
[<System.Obsolete("The recommended alternative is to inherit from ContainerControlDesigner instead and to use an EditableDesignerRegion. Regions allow for better control of the content in the designer. http://go.microsoft.com/fwlink/?linkid=14202")>]
member this.ReadOnly : bool with get, set
Public Property ReadOnly As Boolean
プロパティ値
コントロールのプロパティがデザイン時に読み取り専用である場合は true
。それ以外の場合は false
。
- 属性
注釈
クラスは ControlDesigner 、本質的に読み取り専用です。 読み取り/書き込み機能は、オブジェクトを DesignerRegion 追加するか、クラスなどの基本クラスを ContainerControlDesigner 使用して提供されます。
注意
ReadOnly は互換性のために残されています。 編集可能なデザイナー領域を ContainerControlDesigner 追加できるクラス、またはテンプレートで編集可能なデザイナー領域を TemplatedControlDesigner 作成できるオブジェクトから派生します。