Beispiel #1
0
        public void Remove(IBindable bindable)
        {
            if (bindable == null)
            {
                throw new ArgumentNullException("bindable");
            }

            bindable.Dispose();
            this.bindables.Remove(bindable);
        }