~halega/+junk/sharpdevelop

« back to all changes in this revision

Viewing changes to src/AddIns/DisplayBindings/Data/ICSharpCode.Data.Core.UI/UserControls/WizardErrorUserControl.cs

  • Committer: sk
  • Date: 2011-09-10 05:17:57 UTC
  • Revision ID: halega@halega.com-20110910051757-qfouz1llya9m6boy
4.1.0.7915 Release Candidate 1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#region Usings
 
2
 
 
3
using System;
 
4
using System.Collections.Generic;
 
5
using System.Linq;
 
6
using System.Text;
 
7
 
 
8
#endregion
 
9
 
 
10
namespace ICSharpCode.Data.Core.UI.UserControls
 
11
{
 
12
    public class WizardErrorUserControl : WizardUserControl
 
13
    {
 
14
        #region Fields
 
15
 
 
16
        private Exception _exception = null;
 
17
 
 
18
        #endregion
 
19
 
 
20
        #region Properties
 
21
 
 
22
        public override sealed bool CanFinish
 
23
        {
 
24
            get { return false; }
 
25
        }
 
26
 
 
27
        public Exception Exception 
 
28
        {
 
29
            get { return _exception; }
 
30
            set 
 
31
            { 
 
32
                _exception = value; 
 
33
                OnPropertyChanged("Exception"); 
 
34
            }
 
35
        }
 
36
 
 
37
        public int PreviousIndex { get; set; }   
 
38
 
 
39
        #endregion
 
40
    }
 
41
}