WPF 自定义控件中的 ListBox 而不是 ItemsPresenter?

发布于 2024-08-19 21:44:30 字数 489 浏览 7 评论 0原文

我正在为我的 WPF 自定义控件编写一个通用控件模板。 但是使用 ItemsPresenter 我只得到了原始数据列表.. 与ListBox相比,ListBox具有我需要的所有功能。

使用 ListBox 而不是 ItemsPresenter 是错误的吗?

我所追求的是 如果我编写一个使用 ListBox 的通用模板,并在后面的代码中注册一些 ListBox 特定事件,并且有人用他自己的通用 Template 覆盖我的通用 Template如果 ControlTemplate 内部的 ItemsControl 不具备该事件,则会引发异常。对于 ItemsPresenter,每个人都可以使用他想要的东西。

谢谢。

I'm writing a generic control template for my WPF Custom Control.
But with ItemsPresenter I only got raw list of Data..
Compared to the ListBox, the ListBox has all features I need.

Is it wrong to use a ListBox instead of ItemsPresenter ?

What I'm after is that
if I write a generic Template that uses a ListBox and in code behind I register some ListBox specific events and somebody overrides my generic Template with his own ControlTemplate witn an ItemsControl inside that does not possess that event, it will raise an Exception. In case of ItemsPresenter, everyone could use what he wants to.

Thanks.

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

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

发布评论

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

评论(1

折戟 2024-08-26 21:44:31

我认为您可以添加一些测试来查看模板中的 ItemsControl 是否是 ListBox。例如:

var itemsControl = this.Template.FindName("PART_Items", this);
if(itemsControl is ListBox)
{
  // wire additional event handler here
}

I think you could add some test to see if the ItemsControl in the template is a ListBox or not. For example:

var itemsControl = this.Template.FindName("PART_Items", this);
if(itemsControl is ListBox)
{
  // wire additional event handler here
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文