如何访问附加到 UI 元素的行为?

发布于 2024-11-19 01:31:42 字数 354 浏览 1 评论 0原文

例如,我有这样的:

Border myBorder = new Border();
...
designArea.Children.Add(myBorder);

ResizeAndMoveBehavior b = new ResizeAndMoveBehavior();
b.CurrentProperties = thisButtonProperties;
b.Attach(myBorder);

现在,当我从 designArea 的子级获取 myBorder 时,如何访问附加到 myBorder 的行为的 CurrentProperties?

For example, I have this:

Border myBorder = new Border();
...
designArea.Children.Add(myBorder);

ResizeAndMoveBehavior b = new ResizeAndMoveBehavior();
b.CurrentProperties = thisButtonProperties;
b.Attach(myBorder);

Now when I get myBorder from the designArea's children how can I access the CurrentProperties of the behavior attached to myBorder?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爺獨霸怡葒院 2024-11-26 01:31:42

您以非标准方式附加您的行为,这意味着以后无法取回附加的行为。但是,如果您按照标准方式执行此操作,则可以获得此信息。以下是如何管理行为的示例。

using System.Windows.Interactivity;

// Add a behavior.
Interaction.GetBehaviors(myBorder).Add(b);

// Get all behaviors of an object.
BehaviorCollection behaviors = Interaction.GetBehaviors(myBorder);

// Get a specific type of behavior.
ResizeAndMoveBehavior myBehavior = (ResizeAndMoveBehavior)behaviors
    .Where(b => b is ResizeAndMoveBehavior).Single();

You are attaching your behavior in a non-standard way, which means that there is no way to get the attached behavior(s) back later. However, if you do it the standard way, you can get this info. Here is an example of how behaviors should be managed.

using System.Windows.Interactivity;

// Add a behavior.
Interaction.GetBehaviors(myBorder).Add(b);

// Get all behaviors of an object.
BehaviorCollection behaviors = Interaction.GetBehaviors(myBorder);

// Get a specific type of behavior.
ResizeAndMoveBehavior myBehavior = (ResizeAndMoveBehavior)behaviors
    .Where(b => b is ResizeAndMoveBehavior).Single();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文