Home
last modified time | relevance | path

Searched refs:ObservableCollection (Results 26 – 50 of 148) sorted by relevance

123456

/dports/games/openbve/OpenBVE-1.8.2.1/source/TrainEditor2/Models/Others/
H A DListViewItemModel.cs11 internal ObservableCollection<string> Texts;
39 Texts = new ObservableCollection<string>(); in ListViewItemModel()
H A DTreeViewItemModel.cs40 internal ObservableCollection<TreeViewItemModel> Children;
45 Children = new ObservableCollection<TreeViewItemModel>(); in TreeViewItemModel()
/dports/multimedia/handbrake/HandBrake-1.4.2/win/CS/HandBrakeWPF/Model/
H A DSourceMenuItem.cs25 this.Children = new ObservableCollection<SourceMenuItem>(); in SourceMenuItem()
41 public ObservableCollection<SourceMenuItem> Children { get; set; }
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ObjectModel/tests/ObservableCollection/
H A DObservableCollection_ReentrancyTests.cs16 var collection = new ObservableCollection<int>(); in Reentrancy_SingleListener_DoesNotThrow()
41 var collection = new ObservableCollection<int>(); in Reentrancy_MultipleListeners_Throws()
118 public class ObservableCollectionSubclass<T> : ObservableCollection<T>
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/collections/objectmodel/
H A Dobservablecollection.cs38 …public class ObservableCollection<T> : Collection<T>, INotifyCollectionChanged, INotifyPropertyCha… class
50 public ObservableCollection() : base() { } in ObservableCollection() method in System.Collections.ObjectModel.ObservableCollection
62 public ObservableCollection(List<T> list) in ObservableCollection() method in System.Collections.ObjectModel.ObservableCollection
84 public ObservableCollection(IEnumerable<T> collection) in ObservableCollection() method in System.Collections.ObjectModel.ObservableCollection
/dports/games/openbve/OpenBVE-1.8.2.1/source/TrainEditor2/Models/Trains/
H A DTrain.cs58 internal ObservableCollection<Car> Cars;
59 internal ObservableCollection<Coupler> Couplers;
66 Cars = new ObservableCollection<Car>(); in Train()
67 Couplers = new ObservableCollection<Coupler>(); in Train()
77 Cars = new ObservableCollection<Car>(Cars.Select(c => (Car)c.Clone())), in Clone()
78 Couplers = new ObservableCollection<Coupler>(Couplers.Select(c => (Coupler)c.Clone())) in Clone()
H A DAcceleration.cs110 internal ObservableCollection<Entry> Entries;
258 Entries = new ObservableCollection<Entry>(); in Acceleration()
283 acceleration.Entries = new ObservableCollection<Entry>(Entries.Select(e => (Entry)e.Clone())); in Clone()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Activities.Core.Presentation/System/ServiceModel/Activities/Presentation/
H A DCorrelationDataDesigner.xaml.cs33 typeof(ObservableCollection<CorrelationDataWrapper>),
52 public ObservableCollection<CorrelationDataWrapper> CorrelationInitializeData
54 …get { return (ObservableCollection<CorrelationDataWrapper>)GetValue(CorrelationInitializeDataPrope…
121 …DataDesigner).correlationInitializers.ItemsSource = e.NewValue as ObservableCollection<Correlation… in OnCorrelationDataChanged()
/dports/multimedia/handbrake/HandBrake-1.4.2/win/CS/HandBrakeWPF/Converters/Subtitles/
H A DSubtitlesQueueDisplayConverter.cs37ObservableCollection<SubtitleTrack> tracks = value as ObservableCollection<SubtitleTrack>; in Convert()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.Collections.ObjectModel/
H A DReadOnlyObservableCollectionTest.cs46 ObservableCollection<char> collection = new ObservableCollection<char> (initial); in ClassTest()
/dports/lang/mono/mono-5.10.1.57/mcs/class/WindowsBase/Test/System.Collections.ObjectModel/
H A DReadOnlyObservableCollectionTest.cs45 ObservableCollection<char> collection = new ObservableCollection<char> (initial); in ClassTest()
/dports/multimedia/handbrake/HandBrake-1.4.2/win/CS/HandBrakeWPF/Converters/Audio/
H A DAudioQueueDisplayConverter.cs42 ObservableCollection<AudioTrack> tracks = value as ObservableCollection<AudioTrack>; in Convert()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ComponentModel.Composition/tests/System/ComponentModel/Composition/
H A DCompositionContainerCollectionTests.cs93 ObservableCollectionOfTReadOnlyField = new ObservableCollection<T>(); in SupportedImportCollectionMutation()
94 _observableCollectionOfTReadOnlyProperty = new ObservableCollection<T>(); in SupportedImportCollectionMutation()
134 public ObservableCollection<T> ObservableCollectionOfTField;
137 public readonly ObservableCollection<T> ObservableCollectionOfTReadOnlyField;
140 public ObservableCollection<T> ObservableCollectionOfTProperty { get; set; }
143 …public ObservableCollection<T> ObservableCollectionOfTReadOnlyProperty { get { return _observableC…
144 private readonly ObservableCollection<T> _observableCollectionOfTReadOnlyProperty;
/dports/games/openbve/OpenBVE-1.8.2.1/source/TrainEditor2/Models/
H A DApp.cs396 internal ObservableCollection<ListViewItemModel> VisibleLogMessages;
408 VisibleLogMessages = new ObservableCollection<ListViewItemModel>(); in App()
419 …item.Children[1].Children = new ObservableCollection<TreeViewItemModel>(Train.Cars.Select((x, i) =… in CreateItem()
420 …item.Children[2].Children = new ObservableCollection<TreeViewItemModel>(Train.Couplers.Select((x, … in CreateItem()
822 private void RenameTreeViewItem(ObservableCollection<TreeViewItemModel> items) in RenameTreeViewItem()
946 …Texts = new ObservableCollection<string>(new[] { GetMessageTypeString(message.Type), message.Text … in AddLogMessage()
972 Texts = new ObservableCollection<string>(new[] { GetMessageTypeString(x.Type), x.Text }), in ChangeVisibleLogMessages()
/dports/net/megacmd/MEGAcmd-1.4.1_Win/sdk/examples/wp8/MegaApp/MegaApp/Models/
H A DCloudDriveViewModel.cs49 this.ChildNodes = new ObservableCollection<NodeViewModel>(); in CloudDriveViewModel()
125 public ObservableCollection<NodeViewModel> ChildNodes { get; set; }
/dports/misc/gedkeeper/GEDKeeper-2.19.1/projects/GKv3/GEDKeeper3/GKUI/Components/
H A DFilterGridView.cs77 private ObservableCollection<FilterConditionRow> fCollection;
83 fCollection = new ObservableCollection<FilterConditionRow>(); in FilterGridView()
/dports/multimedia/handbrake/HandBrake-1.4.2/win/CS/HandBrakeWPF/ViewModels/
H A DChaptersViewModel.cs99 public ObservableCollection<ChapterMarker> Chapters
120 private ObservableCollection<Chapter> SourceChapterList { get; set; }
345 this.SourceChapterList = new ObservableCollection<Chapter>(sourceChapters); in SetSourceChapters()
/dports/security/beid/eid-mw-5.0.8/plugins_tools/eid-viewer/Windows/eIDDataSignCheck/Sources/
H A DCertViewModel.cs18 Certs = new ObservableCollection<CertViewModel>(); in CertViewModel()
71 public ObservableCollection<CertViewModel> Certs { get; set; }
/dports/security/beid/eid-mw-5.0.8/plugins_tools/eid-viewer/Windows/eIDViewer/Sources/
H A DCertViewModel.cs18 Certs = new ObservableCollection<CertViewModel>(); in CertViewModel()
71 public ObservableCollection<CertViewModel> Certs { get; set; }
/dports/multimedia/handbrake/HandBrake-1.4.2/win/CS/HandBrakeWPF/Controls/SplitButton/
H A DSplitMenuButton.cs34 … private readonly ObservableCollection<object> itemSource = new ObservableCollection<object>();
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Activities.Core.Presentation/System/Activities/Core/Presentation/
H A DTransitionDesigner.xaml.cs31 …= DependencyProperty.Register("TransitionsSharingTrigger", typeof(ObservableCollection<ExpandableI…
51 this.TransitionsSharingTrigger = new ObservableCollection<ExpandableItemWrapper>(); in TransitionDesigner()
91 public ObservableCollection<ExpandableItemWrapper> TransitionsSharingTrigger
93 …get { return (ObservableCollection<ExpandableItemWrapper>)this.GetValue(TransitionsSharingTriggerP…
396 this.addNewTransitionBox.ViewModel.ComboBoxItems = new ObservableCollection<string>( in OnNewTransitionTextBoxGotFocus()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ObjectModel/ref/
H A DSystem.ObjectModel.cs29 …public partial class ObservableCollection<T> : System.Collections.ObjectModel.Collection<T>, Syste… class
31 public ObservableCollection() { } in ObservableCollection() method in System.Collections.ObjectModel.ObservableCollection
32 public ObservableCollection(System.Collections.Generic.List<T> list) { } in ObservableCollection() method in System.Collections.ObjectModel.ObservableCollection
33 public ObservableCollection(System.Collections.Generic.IEnumerable<T> collection) { } in ObservableCollection() method in System.Collections.ObjectModel.ObservableCollection
121 …public ReadOnlyObservableCollection(System.Collections.ObjectModel.ObservableCollection<T> list) :… in ReadOnlyObservableCollection()
/dports/lang/mono/mono-5.10.1.57/mcs/class/WindowsBase/System.Collections.ObjectModel/
H A DObservableCollection.cs32 [assembly:TypeForwardedTo (typeof (ObservableCollection<>))]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Activities.Core.Presentation/System/Activities/Presentation/
H A DTypeCollectionDesigner.xaml.cs41 ObservableCollection<TypeWrapper> wrapperCollection;
54 …this.wrapperCollection = new ObservableCollection<TypeWrapper>(value.Select(type => new TypeWrappe…
/dports/net/zerotier/ZeroTierOne-1.8.3/attic/WinUI/
H A DToolbarItem.xaml.cs46 … private ObservableCollection<MenuItem> _networkCollection = new ObservableCollection<MenuItem>();
49 public ObservableCollection<MenuItem> NetworkCollection

123456