separator

Set WPF separator only in between 2 MenuItems' Header Text and inputgesture rather than 2 entire MenuItems?

Hi there, can anyone please help to shed me some light on my question in above Title field? Basically, I am using the MenuItem controltemplate sample code from MSDN and want to customize its layout to achieve my application need. However, since I used the controltemplates, the default separator is overwritten by the new separator style....

Move separator elements upwards in xml hierarchy

I have an xml document with separators deep down in the hierarchy. <A> <B> <C id='1'/> <separator/> <C id='2'/> </B> <B> <C id='3'/> <separator/> </B> <B> <C id='4'/> </B> </A> I want to move the separators upwards, keeping elements in order. So the desired output is <A> <B> <C id='1'/> </B...

ListView separators using a CursorAdapter

I have a ListView which is populated using a CursorAdapter. I'd also like to have some separators in my ListView. I have accomplished this with an ArrayAdapter, but I'm not sure how to accomplish this with a CursorAdapter. Are there any strategies for doing so? Or am I out of luck? ...

C# decimal separator?

Hello, I have amethod which returns numbers like this: public decimal GetNumber() { return 250.00m; } Now when this value is printed to the console for example, it has a comma (250,00) instead of a point (250.00). I always want a point here, what am I doing wrong? Thanks ...

Parse NSDictionary to a string with custom separators

Hey! I have an NSMutableDictionary with some values in it, and I need to join the keys and values into a string, so > name = Fred > password = cakeismyfavoritefood > email = [email protected] becomes name=Fred&password=cakeismyfavoritefood&[email protected] How can I do this? Is there a way to join NSDictionaries i...

toolstripseparator with no line

Is it possible to make a toolstripseparator without the vertical line, but only a space? ...

Using 1000 separator when writing Excel

How to use 1000 separator when writing Numbers to Excel Sheet with java? Typical Decimal Formatter forces the double value to String. I want the value to be in format 000 (space) 000,00 ...

How to change the color of the a WPF `<Separator />`?

I use <Separator /> in my form but don't know how to change its color. None of Border /Foreground/Background does exist. Plese help. ...

A vertical Seperator control in a Menu, Toolbar, StackPanel, etc. - Is it possible?

I want to use the Separator control in a vertical way(Lets say in a horizontal StackPanel). Searching around I found this method but it doesn't use the Separator control rather it uses borders and rectangles. http://social.msdn.microsoft.com/forums/en-US/wpf/thread/eab865be-ad9b-45ed-b9d8-fc93f737b163 Is it possible to use the Separato...

Any way to make a Separator within a WPF menu more narrow?

I've noticed that the margin or height of the default Separator as it is styled in the menus in WPF seems to be slightly larger than some other applications such as Visual Studio 2010. I know that these Separators can be re-templated by applying a new style with a custom ControlTemplate but like always I'm looking for any possible way to...