本文整理汇总了C#中System.Windows.Controls.ItemsControl.AddHandler方法的典型用法代码示例。如果您正苦于以下问题:C# ItemsControl.AddHandler方法的具体用法?C# ItemsControl.AddHandler怎么用?C# ItemsControl.AddHandler使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Controls.ItemsControl
的用法示例。
在下文中一共展示了ItemsControl.AddHandler方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: HookItemsControlEvents
/// <summary>
/// Walk the visual tree to find the ItemsControl and
/// hook its some events on it.
/// </summar
private void HookItemsControlEvents()
{
_itemsControl = GetDependencyObjectFromVisualTree(this,
typeof(ItemsControl)) as ItemsControl;
if (_itemsControl != null)
{
//Handle the Resize/ScrollChange/MouseWheel
//events to determine whether to switch to Normal mode
_itemsControl.SizeChanged +=
new SizeChangedEventHandler(OnCouldSwitchToNormalMode);
_itemsControl.AddHandler(ScrollViewer.ScrollChangedEvent,
new RoutedEventHandler(OnScrollViewerChanged));
_itemsControl.AddHandler(ScrollViewer.MouseWheelEvent,
new RoutedEventHandler(OnCouldSwitchToNormalMode), true);
}
}
示例2: ProcessPanelType
private void ProcessPanelType()
{
if (null == _ui_lbLeft || null == _ui_lbRight || null == _ui_tvLeft || null == _ui_tvRight)
return;
switch (ePanelType)
{
case PanelTypes.list:
_ui_dlbLeft.Visibility = _ui_dlbRight.Visibility = Visibility.Visible;
_ui_dtvLeft.Visibility = _ui_dtvRight.Visibility = Visibility.Collapsed;
_ui_Search.DataContext = _ui_icLeft = _ui_lbLeft;
_ui_icRight = _ui_lbRight;
break;
case PanelTypes.tree:
_ui_dlbLeft.Visibility = _ui_dlbRight.Visibility = Visibility.Collapsed;
_ui_dtvLeft.Visibility = _ui_dtvRight.Visibility = Visibility.Visible;
_ui_Search.DataContext = _ui_icLeft = _ui_tvLeft;
_ui_icRight = _ui_tvRight;
break;
}
_ui_Search.DataContext = _ui_icLeft;
if (null != _ui_icLeft)
_ui_icLeft.RemoveHandler(MouseLeftButtonDownEvent, (MouseButtonEventHandler)ItemsControl_MouseLeftButtonDown);
if (null != _ui_icRight)
_ui_icRight.RemoveHandler(MouseLeftButtonDownEvent, (MouseButtonEventHandler)ItemsControl_MouseLeftButtonDown);
_ui_icLeft.AddHandler(MouseLeftButtonDownEvent, (MouseButtonEventHandler)ItemsControl_MouseLeftButtonDown, true);
_ui_icRight.AddHandler(MouseLeftButtonDownEvent, (MouseButtonEventHandler)ItemsControl_MouseLeftButtonDown, true);
ProcessItemTemplate();
}