|
|
|
|
@ -99,8 +99,8 @@ namespace ICSharpCode.SharpDevelop.Gui
@@ -99,8 +99,8 @@ namespace ICSharpCode.SharpDevelop.Gui
|
|
|
|
|
// webServicesListView
|
|
|
|
|
//
|
|
|
|
|
this.webServicesListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { |
|
|
|
|
this.propertyColumnHeader, |
|
|
|
|
this.valueColumnHeader}); |
|
|
|
|
this.propertyColumnHeader, |
|
|
|
|
this.valueColumnHeader}); |
|
|
|
|
this.webServicesListView.Dock = System.Windows.Forms.DockStyle.Fill; |
|
|
|
|
this.webServicesListView.Location = new System.Drawing.Point(0, 0); |
|
|
|
|
this.webServicesListView.Name = "webServicesListView"; |
|
|
|
|
@ -248,13 +248,17 @@ namespace ICSharpCode.SharpDevelop.Gui
@@ -248,13 +248,17 @@ namespace ICSharpCode.SharpDevelop.Gui
|
|
|
|
|
|
|
|
|
|
void AddImages() |
|
|
|
|
{ |
|
|
|
|
ImageList imageList = new ImageList(); |
|
|
|
|
imageList.Images.Add(ResourceService.GetBitmap("Icons.16x16.Library")); |
|
|
|
|
imageList.Images.Add(ResourceService.GetBitmap("Icons.16x16.Interface")); |
|
|
|
|
imageList.Images.Add(ResourceService.GetBitmap("Icons.16x16.Class")); |
|
|
|
|
imageList.Images.Add(ResourceService.GetBitmap("Icons.16x16.Method")); |
|
|
|
|
try { |
|
|
|
|
ImageList imageList = new ImageList(); |
|
|
|
|
imageList.Images.Add(ResourceService.GetBitmap("Icons.16x16.Library")); |
|
|
|
|
imageList.Images.Add(ResourceService.GetBitmap("Icons.16x16.Interface")); |
|
|
|
|
imageList.Images.Add(ResourceService.GetBitmap("Icons.16x16.Class")); |
|
|
|
|
imageList.Images.Add(ResourceService.GetBitmap("Icons.16x16.Method")); |
|
|
|
|
|
|
|
|
|
webServicesTreeView.ImageList = imageList; |
|
|
|
|
webServicesTreeView.ImageList = imageList; |
|
|
|
|
} catch (ResourceNotFoundException) { |
|
|
|
|
// in design mode, the core is not initialized -> the resources cannot be found
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void AddStringResources() |
|
|
|
|
|