Tagged Questions

2
votes
4answers
86 views

Converting vector-contoured regions (borders) to a raster map (pixel grid)

I have a map that is cut up into a number of regions by borders (contours) like countries on a world map. Each region has a certain surface-cover class S (e.g. 0 for water, 0.03 fo …
0
votes
5answers
105 views

how to organize the code similar to #region/#endregion in .NET?

Hi, While the code is growing big it is getting harder and harder to keep everything well organized. One thing I liked very much the time I developed in .NET was #region/#endregio …
1
vote
1answer
79 views

How to change the color of a #region in Visual Studio’s 2008

I maybe going mad, but for the life of me I can't find the option to change the colour of collapsed region's in VS2008. For example if I have the following code: '#region Test Re …
0
votes
1answer
31 views

How to change the color of expanded regions’ titles in VS2008?

I would like to know if is there a way to change the color of expanded regions' titles in VS2008. Even by using a third part plug-in. #region My Region Title //I want this text t …
0
votes
0answers
16 views

How to get [#]region structure from (Document, ProjectItem, FileCodeModel in EnvDTE)

Hi to all, I'm developing the integrated Package which show structure of code (C#, VB) in TreeView of my control window. I found a SourceCodeOutliner project in (http://www.cod …
0
votes
2answers
125 views

Nested menu regions in Composite WPF application

Is it possible to have nested regions in a Composite WPF application? I want modules to be able to inject new menus, and also be able to inject menu items into an existing menu. U …
4
votes
6answers
141 views

Would you use regions within long switch/enum declarations?

I've recently found myself needing (yes, needing) to define absurdly long switch statements and enum declarations in C# code, but I'm wondering what people feel is the best way to …