~charlie.poole/nunitv2/equality-handlers

« back to all changes in this revision

Viewing changes to src/GuiComponents/UiKit/SettingsPage.cs

  • Committer: Charlie Poole
  • Date: 2011-03-29 21:54:46 UTC
  • mfrom: (3257.4.15 standalone-editor)
  • Revision ID: charlie@nunit.org-20110329215446-pu1r6okg4www4zat
Remove integrated project editor and substitute new standalone editor

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
                private string key;
33
33
                private string title;
34
34
 
 
35
        private MessageDisplay messageDisplay;
 
36
 
35
37
                // Constructor used by the Windows.Forms Designer
36
38
                public SettingsPage()
37
39
                {
49
51
                        this.title = key;
50
52
                        int dot = key.LastIndexOf( '.' );
51
53
                        if ( dot >= 0 ) title = key.Substring(dot+1);
 
54
            this.messageDisplay = new MessageDisplay("NUnit Settings");
52
55
                }
53
56
 
54
57
                /// <summary> 
67
70
                }
68
71
 
69
72
                #region Properties
 
73
 
70
74
                public string Key
71
75
                {
72
76
                        get { return key; }
86
90
                {
87
91
                        get { return false; }
88
92
                }
 
93
 
 
94
        public IMessageDisplay MessageDisplay
 
95
        {
 
96
            get { return messageDisplay; }
 
97
        }
 
98
 
89
99
                #endregion
90
100
 
91
101
                #region Public Methods