C# Class WPFLocalizeExtension.Engine.ParentNotifiers

A memory safe dictionary storage for ParentChangedNotifier instances.
Mostra file Open project: SeriousM/WPFLocalizationExtension

Public Methods

Method Description
Add ( DependencyObject target, ParentChangedNotifier parentChangedNotifier ) : void

Adds the key-value-pair.

ContainsKey ( DependencyObject target ) : bool

Check, if it contains the key.

Remove ( DependencyObject target ) : void

Removes the entry.

Method Details

Add() public method

Adds the key-value-pair.
public Add ( DependencyObject target, ParentChangedNotifier parentChangedNotifier ) : void
target System.Windows.DependencyObject The target key object.
parentChangedNotifier XAMLMarkupExtensions.Base.ParentChangedNotifier The notifier.
return void

ContainsKey() public method

Check, if it contains the key.
public ContainsKey ( DependencyObject target ) : bool
target System.Windows.DependencyObject The target object.
return bool

Remove() public method

Removes the entry.
public Remove ( DependencyObject target ) : void
target System.Windows.DependencyObject The target object.
return void