Fixed the remaining issues in the ContainerListView control; minor documentation improvements
git-svn-id: file:///srv/devel/repo-conversion/nuwi@28 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
parent
985f2622aa
commit
9a5252f461
6 changed files with 290 additions and 65 deletions
|
@ -17,18 +17,24 @@ namespace Nuclex.Windows.Forms {
|
|||
/// window during a modal asynchronous processes.
|
||||
/// </summary>
|
||||
/// <example>
|
||||
/// class Test : Nuclex.Support.Scheduling.ThreadOperation {
|
||||
/// static void Main() {
|
||||
/// Test myTest = new Test();
|
||||
/// myTest.Begin();
|
||||
/// Nuclex.Windows.Forms.ProgressReporterForm.Track(myTest);
|
||||
/// myTest.End();
|
||||
/// <code>
|
||||
/// class Test : Nuclex.Support.Scheduling.ThreadOperation {
|
||||
///
|
||||
/// static void Main() {
|
||||
/// Test myTest = new Test();
|
||||
/// myTest.Begin();
|
||||
/// Nuclex.Windows.Forms.ProgressReporterForm.Track(myTest);
|
||||
/// myTest.End();
|
||||
/// }
|
||||
///
|
||||
/// protected override void Execute() {
|
||||
/// for(int i = 0; i < 10000000; ++i) {
|
||||
/// OnAsyncProgressUpdated((float)i / 10000000.0f);
|
||||
/// }
|
||||
/// }
|
||||
///
|
||||
/// }
|
||||
/// protected override void Execute() {
|
||||
/// for(int i = 0; i < 10000000; ++i)
|
||||
/// OnAsyncProgressUpdated((float)i / 10000000.0f);
|
||||
/// }
|
||||
/// }
|
||||
/// </code>
|
||||
/// </example>
|
||||
public partial class ProgressReporterForm : Form {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue