XslTransformFileEditor クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
XML 変換ファイルを選択するためのデザイン時ユーザー インターフェイスを提供します。
public ref class XslTransformFileEditor : System::Web::UI::Design::UrlEditor
public class XslTransformFileEditor : System.Web.UI.Design.UrlEditor
type XslTransformFileEditor = class
inherit UrlEditor
Public Class XslTransformFileEditor
Inherits UrlEditor
- 継承
例
次のコード例は、 クラスの XslTransformFileEditor インスタンスを、カスタム コントロール内に含まれるプロパティに関連付ける方法を示しています。 コントロール プロパティがデザイン画面で編集されると、 クラスを XslTransformFileEditor 使用すると、ユーザー インターフェイスはプロパティ値の XML 変換ファイル名を選択および編集できます。
using System;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Web.UI;
using System.Web.UI.Design;
using System.Web.UI.Design.WebControls;
using System.Web.UI.WebControls;
using System.IO;
namespace ControlDesignerSamples.CS
{
// Define a simple text control, derived from the
// System.Web.UI.WebControls.Label class.
[
Designer(typeof(TextControlDesigner))
]
public class SimpleTextControl : Label
{
// Define a private member to store the file name value in the control.
private string _filename = "";
private string _internalText = "";
// Define the public XML transform file property. Indicate that the
// property can be edited at design-time with the XslTransformFileEditor class.
[EditorAttribute(typeof(System.Web.UI.Design.XslTransformFileEditor),
typeof(System.Drawing.Design.UITypeEditor))]
public string TransformFileName
{
get
{
return _filename;
}
set
{
_filename = value;
}
}
// Define a property that returns the timestamp
// for the selected file.
public string LastChanged
{
get
{
if ((_filename != null) && (_filename.Length > 0))
{
if (File.Exists(_filename))
{
DateTime lastChangedStamp = File.GetLastWriteTime(_filename);
return lastChangedStamp.ToLongDateString();
}
}
return "";
}
}
// Override the control Text property, setting the default
// text to the LastChanged string value for the selected
// file name. If the file name has not been set in the
// design view, then default to an empty string.
public override string Text
{
get
{
if ((_internalText == "") && (LastChanged.Length > 0))
{
// If the internally stored value hasn't been set,
// and the file name property has been set,
// return the last changed timestamp for the file.
_internalText = LastChanged;
}
return _internalText;
}
set
{
if ((value != null) && (value.Length > 0))
{
_internalText = value;
}
else {
_internalText = "";
}
}
}
}
}
Imports System.ComponentModel
Imports System.ComponentModel.Design
Imports System.Web.UI
Imports System.Web.UI.Design
Imports System.Web.UI.Design.WebControls
Imports System.Web.UI.WebControls
Imports System.IO
Namespace ControlDesignerSamples.VB
' Define a simple text control, derived from the
' System.Web.UI.WebControls.Label class.
<Designer(GetType(TextControlDesigner))> _
Public Class SimpleTextControl
Inherits Label
' Define a private member to store the file name value in the control.
Private _filename As String = ""
Private _internalText As String = ""
' Define the public XML transform file property. Indicate that the
' property can be edited at design-time with the XslTransformFileEditor class.
<EditorAttribute(GetType(System.Web.UI.Design.XslTransformFileEditor), _
GetType(System.Drawing.Design.UITypeEditor))> _
Public Property TransformFileName() As String
Get
Return _filename
End Get
Set(ByVal value As String)
_filename = value
End Set
End Property
' Define a property that returns the timestamp
' for the selected file.
Public ReadOnly Property LastChanged() As String
Get
If Not _filename Is Nothing AndAlso _filename.Length > 0 Then
If File.Exists(_filename) Then
Dim lastChangedStamp As DateTime
lastChangedStamp = File.GetLastWriteTime(_filename)
Return lastChangedStamp.ToLongDateString()
End If
End If
Return String.Empty
End Get
End Property
' Override the control Text property, setting the default
' text to the LastChanged string value for the selected
' file name. If the file name has not been set in the
' design view, then default to an empty string.
Public Overrides Property Text() As String
Get
If _internalText.Length = 0 And LastChanged.Length > 0 Then
' If the internally stored value hasn't been set,
' and the file name property has been set,
' return the last changed timestamp for the file.
_internalText = LastChanged
End If
Return _internalText
End Get
Set(ByVal value As String)
If Not value Is Nothing AndAlso value.Length > 0 Then
_internalText = value
Else
_internalText = String.Empty
End If
End Set
End Property
End Class
End Namespace
注釈
XslTransformFileEditorオブジェクトは、デザイン時に XML 変換ファイル (.xsl) の URL を選択および編集し、コントロール プロパティに URL を割り当てるために使用されます。 たとえば、コントロールは XmlDataSource デザイン時に クラスを XslTransformFileEditor 使用して、 プロパティの値を TransformFile 設定します。
属性を EditorAttribute 使用して、 を XslTransformFileEditor プロパティに関連付けます。 関連付けられたプロパティがデザイン画面で編集されると、デザイナー ホストは メソッドを EditValue 呼び出します。 メソッドでは EditValue 、 メソッドを BuildUrl 使用します。これにより、URL を選択するためのユーザー インターフェイスが表示され、ユーザーによって選択された URL が返されます。 メソッドは GetEditStyle 、ユーザー インターフェイスの表示スタイルを示します。
から XslTransformFileEditor クラスを派生し、XML 変換ファイル URL プロパティのカスタム エディターを定義します。 たとえば、派生クラスは メソッドをEditValueオーバーライドし、カスタムFilterまたはCaption値を使用して BuildUrl メソッドを呼び出すことができます。
コンストラクター
XslTransformFileEditor() |
XslTransformFileEditor クラスの新しいインスタンスを初期化します。 |
プロパティ
Caption |
選択ダイアログ ボックスに表示するキャプションを取得します。 |
Filter |
URL 選択ダイアログ ボックスに表示されるアイテムにフィルターをかけるための、エディターの URL フィルター オプションを取得します。 |
IsDropDownResizable |
ユーザーがドロップダウン エディターのサイズを変更できるかどうかを示す値を取得します。 (継承元 UITypeEditor) |
Options |
使用する URL ビルダーのオプションを取得します。 (継承元 UrlEditor) |
メソッド
適用対象
こちらもご覧ください
.NET