首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >问答首页 >Silverlight从绑定列表中获取ListBoxItem

Silverlight从绑定列表中获取ListBoxItem
EN

Stack Overflow用户
提问于 2010-10-13 12:37:45
回答 1查看 738关注 0票数 1

我在一个名为Downloads.XAML的文件中有一个ListBox,绑定到该ListBox的条目来自我的ViewModel中的绑定列表。我在另一个XAML控件中的ListBoxItem样式中定义了一些状态,这些状态需要根据绑定项上设置的属性来触发。我遇到的问题是我无法从ListBox获取ListBoxItem,因为.SelectedItem引用的是实际绑定的对象,而不是ListBox。我尝试过使用ListBox.ItemContainerGenerator,但这只在大约80%的时间内返回ListItem,另外20%的时间返回null,因此没有在相关的ListBoxItem上设置VisualState。

我也尝试过在XAML中通过数据触发器来设置状态,但同样,这并不是100%有效。有人知道如何轻松地从绑定的对象中获取ListBoxItem,以便在绑定对象上触发我所需的VisualState吗?

绑定到ListBox列表中的项目是从不同的页面添加的-下载页面此时不可见,我在想这就是为什么找不到ListBoxItems或状态不被触发的原因?

下面是样式中ListBoxItem控件模板的XAML:

代码语言:javascript
运行
AI代码解释
复制
  <Style x:Key="PrimaryDownloadsListBoxItemStyle" TargetType="ListBoxItem">
    <Setter Property="Padding" Value="3"/>
    <Setter Property="HorizontalContentAlignment" Value="Left"/>
    <Setter Property="VerticalContentAlignment" Value="Top"/>
    <Setter Property="Background" Value="Transparent"/>
    <Setter Property="BorderThickness" Value="1"/>
    <Setter Property="TabNavigation" Value="Local"/>
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="ListBoxItem" >
                <Grid Margin="0" Height="71">
                    <Grid.RowDefinitions>
                        <RowDefinition Height="5"/>
                        <RowDefinition Height="5"/>
                        <RowDefinition Height="52"/>
                        <RowDefinition Height="5"/>
                        <RowDefinition Height="5"/>
                    </Grid.RowDefinitions>
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition Width="5"/>
                        <ColumnDefinition Width="90"/>
                        <ColumnDefinition Width="10"/>
                        <ColumnDefinition Width="10"/>
                        <ColumnDefinition Width="184"/>
                        <ColumnDefinition Width="116"/>
                        <ColumnDefinition Width="220"/>
                        <ColumnDefinition Width="67"/>
                        <ColumnDefinition Width="10"/>
                    </Grid.ColumnDefinitions>                        
                    <VisualStateManager.VisualStateGroups>
                        <VisualStateGroup x:Name="CommonStates">
                            <VisualState x:Name="Normal"/>
                            <VisualState x:Name="MouseOver"/>
                            <VisualState x:Name="Disabled"/>
                        </VisualStateGroup>
                        <VisualStateGroup x:Name="SelectionStates">
                            <VisualState x:Name="Unselected"/>
                            <VisualState x:Name="Selected">
                                <Storyboard>
                                    <ColorAnimation Duration="0" To="#FF191919" Storyboard.TargetProperty="(Shape.Fill).(SolidColorBrush.Color)" Storyboard.TargetName="fillColor2" d:IsOptimized="True"/>
                                </Storyboard>
                            </VisualState>
                            <VisualState x:Name="SelectedUnfocused"/>
                        </VisualStateGroup>
                        <VisualStateGroup x:Name="FocusStates">
                            <VisualState x:Name="Focused"/>
                            <VisualState x:Name="Unfocused"/>
                        </VisualStateGroup>
                        <VisualStateGroup x:Name="LayoutStates">
                            <VisualState x:Name="AfterLoaded"/>
                            <VisualState x:Name="BeforeLoaded"/>
                            <VisualState x:Name="BeforeUnloaded"/>
                        </VisualStateGroup>
                        <VisualStateGroup x:Name="DownloadStates">
                            <VisualState x:Name="DownloadInProgress">
...

下面是我在后台代码中用来尝试设置状态的代码:

代码语言:javascript
运行
AI代码解释
复制
        private void SetDownloadState(object[] itemDetails)
    {
        DispatcherHelper.CheckBeginInvokeOnUI(() =>
                                   {
                                       var item = itemDetails;
                                       if (item != null)
                                       {
                                           string state = (string)item[0];
                                           VideoItem vi = (VideoItem)item[1];

                                           if (DownloadsListBox.ItemContainerGenerator != null)
                                           {
                                               DownloadsListBox.ScrollIntoView(DownloadsListBox.Items[0]);

                                               foreach (var videoitem in
                                                   DownloadsListBox.Items.Where(videoitem => videoitem == vi))
                                               {
                                                   DownloadsListBox.ScrollIntoView(videoitem);
                                               }

                                               var listBoxItem = DownloadsListBox.ItemContainerGenerator.ContainerFromItem(vi) as ListBoxItem;

                                               //show the status state on this item.
                                               if (listBoxItem != null)
                                               {
                                                   if (state.ToUpper() == "DOWNLOADING")
                                                   {
                                                       bool success = VisualStateManager.GoToState(listBoxItem, "DownloadInProgress", true);
                                                       if (!success)
                                                       {
                                                           Debug.WriteLine("Error changing state in DownloadsView to Downloading!");
                                                       }
                                                   }
                                                   else if (state.ToUpper() == "COMPLETED")
                                                   {
                                                       bool success = VisualStateManager.GoToState(listBoxItem, "DownloadComplete",
                                                                                    true);
                                                       if (!success)
                                                       {
                                                           Debug.WriteLine("Error changing state in DownloadsView to completed!");
                                                       }
                                                   }
                                               }
                                               else
                                               {
                                                   Debug.WriteLine("listBoxItem is null");
                                               }
                                           }
                                       }
                                   });
    }

我确实尝试过在样式中将触发器添加到ContentTemplate中,但并不是100%有效:

代码语言:javascript
运行
AI代码解释
复制
                        <i:Interaction.Triggers>
                        <ei:DataTrigger Binding="{Binding DownloadState}" Value="Downloading">
                            <ei:GoToStateAction StateName="Focused"/>
                            <ei:GoToStateAction StateName="DownloadInProgress"/>
                        </ei:DataTrigger>
                        <ei:DataTrigger Binding="{Binding DownloadState}" Value="DownloadComplete">
                            <ei:GoToStateAction StateName="Focused"/>
                            <ei:GoToStateAction StateName="DownloadComplete"/>
                        </ei:DataTrigger>
                    </i:Interaction.Triggers>
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2010-10-19 08:30:16

我通过在视图模型中设置一个属性来获取ListBoxItem,该属性指向ContentTemplate中网格的templatedParent,然后引用listboxitem:

代码语言:javascript
运行
AI代码解释
复制
"{Binding RelativeSource={RelativeSource TemplatedParent}}"

希望这能在某个时候对某人有所帮助:)

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/3923672

复制
相关文章
WPF TextBox搜索框&自定义TextBox样式
首先要做搜索框当然要有一个搜索的图标啦,幸运的是,fontawesome里面有的~
zls365
2021/04/02
4.8K0
WPF滑块控件(Slider)的自定义样式
点击确定后,我们的页面的Resources中,增加了一系列样式代码,而滑块代码会被修改为如下样子:
Kiba518
2019/08/02
3.8K0
WPF 自定义键盘焦点样式(FocusVisualStyle)
2017-12-17 07:34
walterlv
2018/09/18
1.5K0
WPF 自定义键盘焦点样式(FocusVisualStyle)
WPF 自定义键盘焦点样式(FocusVisualStyle)
发布于 2017-12-17 15:34 更新于 2018-12-14 01:54
walterlv
2020/02/10
8680
WPF --- 如何重写WPF原生控件样式?
上一篇中 WPF --- 重写圆角DataGrid样式,因新产品UI需要,重写了一下微软 「WPF」 原生的 DataGrid 的样式,包含如下内容:
Niuery Diary
2023/10/22
5420
WPF --- 如何重写WPF原生控件样式?
WPF全局样式设置
/Resources/OverwrideDefaultControlStyles.xaml
码客说
2021/07/30
1.6K0
WPF 修改CheckBox样式
它包含一个复选框(ToggleButton)和一个文(Content),改写它,要做的就是修改它们的模板了~
zls365
2021/04/02
2.8K0
WPF常用样式配置
窗口 边界阴影 <Window.Effect> <DropShadowEffect BlurRadius="10" Direction="80" ShadowDepth="0" Color="#f3f3f3" /> </Window.Effect> Border 内部裁剪的Border using System; using System.Windows; using System.Windows.Controls; using Sys
码客说
2021/07/19
3030
WPF获取原始控件样式。
要获取WPF控件的原始样式,需要我们安装Blend for Visual Studio。
Kiba518
2018/12/04
1.3K0
WPF获取原始控件样式。
WPF TextBox使用密码样式
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/161458.html原文链接:https://javaforall.cn
全栈程序员站长
2022/09/15
9040
WPF --- 重写圆角DataGrid样式
因要符合UI设计, 需要一个圆角的 DataGrid 样式,且需要一个更美观的滚动条,所以重写了一下微软 「WPF」 原生的 DataGrid 的样式,包含如下内容:
Niuery Diary
2023/10/22
6950
WPF --- 重写圆角DataGrid样式
默认的WPF样式在哪里
首先查找指定类型所在的程序集(例如Button所在的PresentationFramework),如果程序集定义了ThemeInfo
黄腾霄
2020/06/10
7170
使用通用附加属性来减少 WPF 元素自定义样式的多余代码
使用通用附加属性来减少 WPF 元素自定义样式的多余代码 魏刘宏 2022 年 11 月 07 日 本文将以WPFUI(https://gitee.com/dlgcy/WPFUI)项目中的 ComboBox样式为例,介绍如何使用附加属性来增强和简化样式代码。
独立观察员
2022/12/31
2K0
使用通用附加属性来减少 WPF 元素自定义样式的多余代码
WPF XAML 为项目设置全局样式
正确的做法是封装统一风格的所有控件。 (例如按钮,统一高宽,字体,字体大小,然后申明到独立的资源字典中, 在App.xaml中引用)
zls365
2021/10/19
1.8K0
自定义 WordPress 样式
修改页面头部、脚部的文件路径:wp-content ——》themes ——》twentyten ——》footer.php、header.php
阳光岛主
2019/02/19
1.6K0
自定义 WordPress 样式
自定义MessageBox样式
1.自定义MessageBox的弹框样式展示 2.代码片段 static private void BuildMessageBox(string title) { newMessageBox = new MsgAlert(); newMessageBox.Text = title; newMessageBox.Size = new System.Drawing.Size(400, 200);
十分钟空间
2022/08/17
9320
自定义MessageBox样式
WPF基础入门--样式的继承及使用
然后我们定义两个继承自它的样式,分别为对应按钮baseButtonStyle1和baseButtonStyle2的样式:
zls365
2021/01/28
1.1K0
自定义 Discuz 样式
discuz根目录——》template——》default——》forum——》discuz.htm
阳光岛主
2019/02/19
2.3K0
自定义 Discuz 样式
WPF自定义路由事件
public static readonly RoutedEvent ButtonClickEvent = EventManager.RegisterRoutedEvent
kiki.
2022/09/29
4970
WPF自定义路由事件
WPF自定义控件创建
其中CS文件,就是我们需要编写的自定义控件,里面的类继承了Control类;而Themes则存放该控件的样式。即,WPF自定义控件,是通过样式给我们的编辑的控件类披上外衣而形成的。
Kiba518
2019/01/28
2K0

相似问题

rake db:migrate返回错误rake db:migrate

20

如何判断rake db:migrate和rake db:seed是否成功

13

是rake db:create和rake db:migrate幂等吗?

14

如何使用rake db:migrate

30

rbenv、JRuby、Warble、Rake

10
添加站长 进交流群

领取专属 10元无门槛券

AI混元助手 在线答疑

扫码加入开发者社群
关注 腾讯云开发者公众号

洞察 腾讯核心技术

剖析业界实践案例

扫码关注腾讯云开发者公众号
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档
查看详情【社区公告】 技术创作特训营有奖征文