• WPF TabControl SelectionChanged 重复执行的问题


    很邪门的问题,我曾经都感觉是微软的bug了。

    问题是这样的:在我的tabcontrol下的tabitem中有一个combobox控件,由于一些原因,需要执行tabcontrol的SelectionChanged 事件,但是比较奇怪的时候,每当我在combobox选择一项时,即combobox的SelectionChanged 事件改变的时候,tabcontrol的SelectionChanged 事件同时也执行了,百思不得其解,后来在网上找到了相关的原因,如下:

    This is because of RoutedEvents.To solve it either handle the SelectionChanged of the combobox.
    In the function handler of the SelectionChanged for combobox just give e.Handled=true;

    private void ComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e) 
            { 
                e.Handled = true; 
            } 

    if u dont want to do this get the OriginalSource property of SelectionChangedEventArgs  in the tabcontrol SelectionChanged handler.This will show whether it is from tabControl or combobox.

    大概就是说微软默认事件是可以传递的,如果不想如此传递,就设置e.Handled=true终止传递。

    嗯,最后的解决方案就只能在combobox的SelectionChanged事件中设置e.Handled=true了,另外,不止是combobox,同时也包括 listbox,listview,datagrid等存在SelectionChanged 事件的控件。

    :注意 ,以上这个是一种解决方案,但是要注意,因为mvvm中事件也是通过传递的方式获取的,这种方式如果是在mvvm中就会出现问题

    像如下这种情况:

     <i:Interaction.Triggers>
                    <i:EventTrigger EventName="SelectionChanged">
                        <command:EventToCommand Command="{Binding SelectTestCommand}"   />
                    </i:EventTrigger>
                </i:Interaction.Triggers>
    View Code

    这种情况下如果你设置e.Handled=true就会使得mvvm中本身的事件也执行不了的,那么在mvvm中这种应该怎么处理呢,那么就只能在tabcontrol的SelectionChanged事件中来设置,具体如下:

     <TabControl SelectionChanged="TabControl_OnSelectionChanged">
                <i:Interaction.Triggers>
                    <i:EventTrigger EventName="SelectionChanged">
                        <command:EventToCommand Command="{Binding TabSelectTestCommand}"   />
                    </i:EventTrigger>
                </i:Interaction.Triggers>
                <TabItem Header="dd"></TabItem>
     </TabControl>
    
     private void TabControl_OnSelectionChanged(object sender, SelectionChangedEventArgs e)
            {
                if (e.Source.GetType() != typeof (TabControl))
                {
                    e.Handled = true;
                }
            }
    View Code
  • 相关阅读:
    USB HID Report Descriptor 报告描述符详解
    USB 管道 && 端点
    USB描述符解析-->枚举.
    USB HID介绍
    USB2.0速度识别
    spring core
    好妈妈【第三章】一生受用的品格教育,不止孩子需要,父母也需要。
    好妈妈【第二章】把学习做成轻松的事,父母如何提升孩子的学习成绩
    好妈妈【第一章】提高爱的质量,小学前的儿童教育
    Java日志系统
  • 原文地址:https://www.cnblogs.com/sczmzx/p/4780443.html
Copyright © 2020-2023  润新知