NameScope.RegisterName(String, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Registers a new name-object pair into the current XAML namescope.
public:
virtual void RegisterName(System::String ^ name, System::Object ^ scopedElement);
public void RegisterName (string name, object scopedElement);
abstract member RegisterName : string * obj -> unit
override this.RegisterName : string * obj -> unit
Public Sub RegisterName (name As String, scopedElement As Object)
Parameters
- name
- String
The name to use for mapping the given object.
- scopedElement
- Object
The object to be mapped to the provided name.
Implements
Exceptions
name
or scopedElement
was provided as null
.
name
was provided as empty string
-or-
name
provided was rejected by the parser, because it contained characters that are invalid for a XAML name
-or-
name
provided would result in a duplicate name registration.
Applies to
See also
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET