blob: ee24b3bbe2baae0d623516a68b905aeeaa9c449a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="ListBoxHelper.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// A Helper for the ListBox control to provide SelectedItems functionality.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Helpers
{
using System.Collections;
using System.Windows;
using System.Windows.Controls;
/// <summary>
/// A Helper for the ListBox control to provide SelectedItems functionality.
/// </summary>
public class ListBoxHelper
{
/// <summary>
/// SelectedItems Attached Dependency Property
/// </summary>
public static readonly DependencyProperty SelectedItemsProperty =
DependencyProperty.RegisterAttached("SelectedItems", typeof(IList), typeof(ListBoxHelper), new FrameworkPropertyMetadata(null, OnSelectedItemsChanged));
/// <summary>
/// Gets the SelectedItems property. This dependency property
/// indicates ....
/// </summary>
/// <param name="item">
/// The item.
/// </param>
/// <returns>
/// The get selected items.
/// </returns>
public static IList GetSelectedItems(DependencyObject item)
{
return (IList)item.GetValue(SelectedItemsProperty);
}
/// <summary>
/// Sets the SelectedItems property. This dependency property
/// indicates ....
/// </summary>
/// <param name="item">
/// The item.
/// </param>
/// <param name="value">
/// The value.
/// </param>
public static void SetSelectedItems(DependencyObject item, IList value)
{
item.SetValue(SelectedItemsProperty, value);
}
/// <summary>
/// Handles changes to the SelectedItems property.
/// </summary>
/// <param name="item">
/// The item.
/// </param>
/// <param name="e">
/// The DependencyPropertyChangedEventArgs.
/// </param>
private static void OnSelectedItemsChanged(DependencyObject item, DependencyPropertyChangedEventArgs e)
{
ListBox listBox = item as ListBox;
if (listBox != null)
{
ResetSelectedItems(listBox);
listBox.SelectionChanged += delegate { ResetSelectedItems(listBox); };
}
}
/// <summary>
/// Reset Selected Items
/// </summary>
/// <param name="listBox">
/// The list box.
/// </param>
private static void ResetSelectedItems(ListBox listBox)
{
IList selectedItems = GetSelectedItems(listBox);
selectedItems.Clear();
if (listBox.SelectedItems != null)
{
foreach (var item in listBox.SelectedItems)
selectedItems.Add(item);
}
}
}
}
|