Salut à tous,

J'ai un problème avec mes deux constructeurs qui sont colorés en vert dans le code ci-dessous.

L'erreur que visual studio me reclame est la suivante:
Error 1 Inconsistent accessibility: parameter type 'HopeForm.IDocumentsHost' is less accessible than method 'HopeForm.ImageDoc.ImageDoc(string, HopeForm.IDocumentsHost)' C:\Users\grandi\documents\visual studio 2010\Projects\Hope\Hope\ImageDoc.cs 69 16 HopeForm
Error 2 Inconsistent accessibility: parameter type 'HopeForm.IDocumentsHost' is less accessible than method 'HopeForm.ImageDoc.ImageDoc(System.Drawing.Bitmap, HopeForm.IDocumentsHost)' C:\Users\grandi\documents\visual studio 2010\Projects\Hope\Hope\ImageDoc.cs 90 16 HopeForm
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Drawing;
using HopeForm.filters_forms;

using APIS;

using WeifenLuo.WinFormsUI;

namespace HopeForm
{
    public partial class ImageDoc : Content
    {
        public System.Drawing.Bitmap image = null;
        public string fileName = null;
        public int width;
        public int height;
        private float zoom = 1;
        private IDocumentsHost host = null;

        API api= new API();
        // Image property

        public Bitmap Image
        {
            get { return image; }
        }
        // Width property
        public int ImageWidth
        {
            get { return width; }
        }
        // Height property
        public int ImageHeight
        {
            get { return height; }
        }
        // Zoom property
        public float Zoom
        {
            get { return zoom; }
        }

        // FileName property
        // return file name if the document was created from file or null
        public string FileName
        {
            get { return fileName; }
        }
        // Events

        public delegate void SelectionEventHandler(object sender, SelectionEventArgs e);
        public event EventHandler DocumentChanged;
        public event EventHandler ZoomChanged;
        public event SelectionEventHandler MouseImagePosition;
        public event SelectionEventHandler SelectionChanged;

        // Constructors
        private ImageDoc(HopeForm.IDocumentsHost host)
        {
            this.host = host;
        }
        // Construct from file
        public ImageDoc(string fileName, HopeForm.IDocumentsHost host)
            : this(host)
        {
            try
            {
                // load image
                api.image = (Bitmap)Bitmap.FromFile(fileName);

                // format image
                AForge.Imaging.Image.FormatImage(ref api.image);

                this.api.fileName = fileName;
            }
            catch (Exception)
            {
                throw new ApplicationException("Failed loading image");
            }

            Init();
        }        
// Construct from image
        public ImageDoc(System.Drawing.Bitmap image, HopeForm.IDocumentsHost host)
            : this(host)
        {
            this.api.image = image;
            AForge.Imaging.Image.FormatImage(ref this.api.image);

            Init();
        }
        // Init the document
        private void Init()
        {
            // init components
            InitializeComponent();

            // form style
            SetStyle(ControlStyles.AllPaintingInWmPaint | ControlStyles.DoubleBuffer | ControlStyles.ResizeRedraw, true);

            // init scroll bars
            this.AutoScroll = true;

            api.UpdateSize();
        }

        public ImageDoc()
        {
            InitializeComponent();
        }

        // On "Image->Clone" item click
        private void cloneToolStripMenuItem_Click(object sender, EventArgs e)
        {
            api.Clone();
        }

        private void cropToolStripMenuItem_Click(object sender, EventArgs e)
        {
            api.Crop();
        }

        private void rotate90DegreeToolStripMenuItem_Click(object sender, EventArgs e)
        {
            api.Rotate90Degree();
        }

        private void mirrorToolStripMenuItem_Click(object sender, EventArgs e)
        {
            api.MirrorImage();
        }

        private void flipToolStripMenuItem_Click(object sender, EventArgs e)
        {
            api.FlipImage();
        }

        private void backToolStripMenuItem_Click(object sender, EventArgs e)
        {
            api.BackImage();
        }

        private void fitToScreenToolStripMenuItem_Click(object sender, EventArgs e)
        {
            api.FitToScreen();
        }

        private void zoomOutToolStripMenuItem_Click(object sender, EventArgs e)
        {
            api.ZoomOut();
        }

        private void zoomInToolStripMenuItem_Click(object sender, EventArgs e)
        {
            api.ZoomIn();
        }

        private void toolStripMenuItem10_Click(object sender, EventArgs e)
        {
            api.ZoomImage();
        }

        private void toolStripMenuItem9_Click(object sender, EventArgs e)
        {
            api.ZoomImage();
        }

        private void toolStripMenuItem8_Click(object sender, EventArgs e)
        {
            api.ZoomImage();
        }

        private void toolStripMenuItem7_Click(object sender, EventArgs e)
        {
            api.ZoomImage();
        }

        private void toolStripMenuItem6_Click(object sender, EventArgs e)
        {
            api.ZoomImage();
        }

        private void toolStripMenuItem5_Click(object sender, EventArgs e)
        {
            api.ZoomImage();
        }

        private void toolStripMenuItem4_Click(object sender, EventArgs e)
        {
            api.ZoomImage();
        }

        private void toolStripMenuItem3_Click(object sender, EventArgs e)
        {
            api.ZoomImage();
        }

        private void toolStripMenuItem2_Click(object sender, EventArgs e)
        {
            api.ZoomImage();
        }
        // Resize the image
        public void ResizeImage()
        {
            ResizeForm form = new ResizeForm();

            form.OriginalSize = new Size(api.width, api.height);

            if (form.ShowDialog() == DialogResult.OK)
            {
                
                api.ApplyFilter(form.Filter);
            }
        }


        private void resizeToolStripMenuItem_Click(object sender, EventArgs e)
        {
            ResizeImage();
        }

        // Rotate the image
        public void RotateImage()
        {
            RotateForm form = new RotateForm();

            if (form.ShowDialog() == DialogResult.OK)
            {

                api.ApplyFilter(form.Filter);
            }
        }

        private void rotateToolStripMenuItem_Click(object sender, EventArgs e)
        {
            RotateImage();
        }

        // Selection arguments
        public class SelectionEventArgs : EventArgs
        {
            private Point location;
            private Size size;

            // Constructors
            public SelectionEventArgs(Point location)
            {
                this.location = location;
            }
            public SelectionEventArgs(Point location, Size size)
            {
                this.location = location;
                this.size = size;
            }

            // Location property
            public Point Location
            {
                get { return location; }
            }
            // Size property
            public Size Size
            {
                get { return size; }
            }
        }
    }
}
Le code source de mon projet est téléchargeable à partir de ce lien:
http://www.4shared.com/file/xns0-PHA/Hope.html


J'espère que quelqu'un d'entre vous peut m'aider.

Merci d'avance