Removed the EmbeddedControlCollection (it's not being used anymore at all); fixed flickering of the ContainerListView control
git-svn-id: file:///srv/devel/repo-conversion/nuwi@29 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
parent
9a5252f461
commit
8d092bd9e8
|
@ -1,4 +1,4 @@
|
|||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
|
||||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
|
@ -89,7 +89,6 @@
|
|||
<DependentUpon>ContainerListView.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Source\ContainerListView\ListViewEmbeddedControl.cs" />
|
||||
<Compile Include="Source\EmbeddedControlCollection.cs" />
|
||||
<Compile Include="Source\ProgressReporter\ProgressReporterForm.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
|
|
|
@ -61,7 +61,6 @@ namespace Nuclex.Windows.Forms {
|
|||
this.embeddedControlClickedDelegate = new EventHandler(embeddedControlClicked);
|
||||
|
||||
this.embeddedControls = new ObservableCollection<ListViewEmbeddedControl>();
|
||||
|
||||
this.embeddedControls.ItemAdded +=
|
||||
new EventHandler<ItemEventArgs<ListViewEmbeddedControl>>(embeddedControlAdded);
|
||||
this.embeddedControls.ItemRemoved +=
|
||||
|
@ -69,6 +68,10 @@ namespace Nuclex.Windows.Forms {
|
|||
this.embeddedControls.Clearing += new EventHandler(embeddedControlsClearing);
|
||||
|
||||
InitializeComponent();
|
||||
|
||||
// Eliminate flickering
|
||||
SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
|
||||
SetStyle(ControlStyles.AllPaintingInWmPaint, true);
|
||||
|
||||
base.View = View.Details;
|
||||
|
||||
|
|
|
@ -1,132 +0,0 @@
|
|||
#region CPL License
|
||||
/*
|
||||
Nuclex Framework
|
||||
Copyright (C) 2002-2007 Nuclex Development Labs
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the IBM Common Public License as
|
||||
published by the IBM Corporation; either version 1.0 of the
|
||||
License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
IBM Common Public License for more details.
|
||||
|
||||
You should have received a copy of the IBM Common Public
|
||||
License along with this library
|
||||
*/
|
||||
#endregion
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Nuclex.Windows.Forms {
|
||||
|
||||
/// <summary>Collection of controls embedded in another control</summary>
|
||||
public class EmbeddedControlCollection : Control.ControlCollection {
|
||||
|
||||
#region class ControlEventArgs
|
||||
|
||||
/// <summary>Arguments class for events that need to pass a control</summary>
|
||||
public class ControlEventArgs : EventArgs {
|
||||
|
||||
/// <summary>Initializes a new event arguments provider</summary>
|
||||
/// <param name="control">Control to be supplied to the event handler</param>
|
||||
public ControlEventArgs(Control control) {
|
||||
this.control = control;
|
||||
}
|
||||
|
||||
/// <summary>Obtains the control the event arguments are carrying</summary>
|
||||
public Control Control { get { return this.control; } }
|
||||
|
||||
/// <summary>Control that's passed to the event handler</summary>
|
||||
private Control control;
|
||||
|
||||
}
|
||||
|
||||
#endregion // class ControlEventArgs
|
||||
|
||||
/// <summary>Raised when a control has been added to the collection</summary>
|
||||
public event EventHandler<ControlEventArgs> ControlAdded;
|
||||
/// <summary>Raised when a control is removed from the collection</summary>
|
||||
public event EventHandler<ControlEventArgs> ControlRemoved;
|
||||
|
||||
/// <summary>Initializes a new instance of the EmbeddedControlCollection class</summary>
|
||||
/// <param name="owner">
|
||||
/// A System.Windows.Forms.Control representing the control
|
||||
/// that owns the control collection
|
||||
/// </param>
|
||||
EmbeddedControlCollection(Control owner) : base(owner) { }
|
||||
|
||||
/// <summary>Adds the specified control to the control collection</summary>
|
||||
/// <param name="value">
|
||||
/// The System.Windows.Forms.Control to add to the control collection
|
||||
/// </param>
|
||||
public override void Add(Control value) {
|
||||
base.Add(value);
|
||||
|
||||
OnControlAdded(value);
|
||||
}
|
||||
|
||||
/// <summary>Removes the specified control from the control collection</summary>
|
||||
/// <param name="value">
|
||||
/// The System.Windows.Forms.Control to remove from the EmbeddedControlCollection
|
||||
/// </param>
|
||||
public override void Remove(Control value) {
|
||||
base.Remove(value);
|
||||
|
||||
OnControlRemoved(value);
|
||||
}
|
||||
|
||||
// These three methods don't need an override since their current implementations
|
||||
// in the .NET Framework 2.0 all call the Remove() method on each individual control.
|
||||
// The ControlAdded/ControlRemoved events weren't in the original class and there
|
||||
// are other designs you could use to guarantee that removed controls get disposed
|
||||
// properly, so this should be rechecked when the code is compiled on another
|
||||
// version of the .NET framework
|
||||
/*
|
||||
/// <summary>Adds an array of control objects to the collection</summary>
|
||||
/// <param name="controls">
|
||||
/// An array of System.Windows.Forms.Control objects to add to the collection
|
||||
/// </param>
|
||||
public override void AddRange(Control[] controls) {
|
||||
base.AddRange(controls);
|
||||
}
|
||||
|
||||
/// <summary>Removes all controls from the collection</summary>
|
||||
public override void Clear() {
|
||||
base.Clear();
|
||||
}
|
||||
|
||||
/// <summary>Removes the child control with the specified key</summary>
|
||||
/// <param name="key">The name of the child control to remove</param>
|
||||
public override void RemoveByKey(string key) {
|
||||
base.RemoveByKey(key);
|
||||
}
|
||||
*/
|
||||
|
||||
/// <summary>
|
||||
/// Called when a control has been added to the collection,
|
||||
/// fires the ControlAdded event
|
||||
/// </summary>
|
||||
/// <param name="control">Control that has been added to the collection</param>
|
||||
protected virtual void OnControlAdded(Control control) {
|
||||
if(ControlAdded != null)
|
||||
ControlAdded(this, new ControlEventArgs(control));
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Called when a control has been removed to the collection,
|
||||
/// fires the ControlRemoved event
|
||||
/// </summary>
|
||||
/// <param name="control">Control that has been removed from the collection</param>
|
||||
protected virtual void OnControlRemoved(Control control) {
|
||||
if(ControlRemoved != null)
|
||||
ControlRemoved(this, new ControlEventArgs(control));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
} // namespace Nuclex.Windows.Forms
|
Loading…
Reference in New Issue
Block a user