-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLocker.cs
More file actions
44 lines (40 loc) · 1.29 KB
/
Locker.cs
File metadata and controls
44 lines (40 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Developer Express Code Central Example:
// How to cancel time-consuming operation from the WaitForm
//
// This example illustrates how to cancel a time-consuming operation on a WaitForm.
// To accomplish this task, place a BackgroundWorker and SplashScreenManager onto a
// Form, and add the Cancel button in the WaitForm's designer. The main idea is to
// perform data loading in a background thread, pass the ILocked object both to the
// WaitForm and to this thread, and check its condition while data is loading.
//
// You can find sample updates and versions for different programming languages here:
// http://www.devexpress.com/example=E4524
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using DevExpress.Skins;
using DevExpress.LookAndFeel;
using DevExpress.UserSkins;
using DevExpress.XtraEditors;
using DevExpress.XtraSplashScreen;
namespace WaitFormCanceling
{
public class Locker : ILocked
{
//// Fields...
private bool _IsCanceled;
public bool IsCanceled
{
get { return _IsCanceled; }
set { _IsCanceled = value; }
}
public Locker()
{
_IsCanceled = false;
}
}
}