本文整理汇总了C#中XamlType.GetAllAttachableMembers方法的典型用法代码示例。如果您正苦于以下问题:C# XamlType.GetAllAttachableMembers方法的具体用法?C# XamlType.GetAllAttachableMembers怎么用?C# XamlType.GetAllAttachableMembers使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类XamlType
的用法示例。
在下文中一共展示了XamlType.GetAllAttachableMembers方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AttachablePropertySetValueSuccess
public void AttachablePropertySetValueSuccess ()
{
var xt = new XamlType (typeof (Attachable), sctx);
var apl = xt.GetAllAttachableMembers ();
var foo = apl.First (ap => ap.Name == "Foo");
Assert.IsTrue (foo.IsAttachable, "#7");
var obj = new object ();
foo.Invoker.SetValue (obj, "xxx"); // obj is non-null, so valid.
// FIXME: this line should be unnecessary.
AttachablePropertyServices.RemoveProperty (obj, new AttachableMemberIdentifier (foo.Type.UnderlyingType, foo.Name));
}
示例2: AttachableProperty
public void AttachableProperty ()
{
var xt = new XamlType (typeof (Attachable), sctx);
var apl = xt.GetAllAttachableMembers ();
Assert.IsTrue (apl.Any (ap => ap.Name == "Foo"), "#1");
Assert.IsTrue (apl.Any (ap => ap.Name == "Protected"), "#2");
// oh? SetBaz() has non-void return value, but it seems ignored.
Assert.IsTrue (apl.Any (ap => ap.Name == "Baz"), "#3");
Assert.AreEqual (4, apl.Count, "#4");
Assert.IsTrue (apl.All (ap => ap.IsAttachable), "#5");
var x = apl.First (ap => ap.Name == "X");
Assert.IsTrue (x.IsEvent, "#6");
}
示例3: AttachablePropertySetValueNullObject
public void AttachablePropertySetValueNullObject ()
{
var xt = new XamlType (typeof (Attachable), sctx);
var apl = xt.GetAllAttachableMembers ();
var foo = apl.First (ap => ap.Name == "Foo");
Assert.IsTrue (foo.IsAttachable, "#7");
foo.Invoker.SetValue (null, "xxx");
}
示例4: GetAllAttachableMembers
public void GetAllAttachableMembers ()
{
var xt = new XamlType (typeof (AttachableClass), sctx);
var l = xt.GetAllAttachableMembers ();
Assert.AreEqual (0, l.Count, "#1");
}