This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.IO; | |
using System.Windows; | |
using System.Windows.Input; | |
using System.Windows.Interactivity; | |
/// <summary> | |
/// A simple file drag and drop behavior. | |
/// </summary> | |
public class FileDragDropBehavior : DragDropBehavior<FileInfo[]> | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.ObjectModel; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System; | |
/// <summary> | |
/// A collection of checked items. | |
/// </summary> | |
/// <typeparam name="TItem">The type of the item.</typeparam> | |
public class CheckedItemCollection<TItem> : ObservableCollection<CheckedItemWrapper<TItem>> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Windows; | |
using System.Windows.Controls; | |
using System.Windows.Data; | |
using System.Windows.Input; | |
using GalaSoft.MvvmLight.Command; | |
public class ClickCommandTrigger : System.Windows.Interactivity.EventTriggerBase<Button> | |
{ | |
/// <summary> |
NewerOlder