toolbar

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...

how to implement the following style/customize the toolbar in iphone applicaiton?

I want to change my common toolbar style to this style.. http://images.cnblogs.com/cnblogs_com/alexliu/epuber/777.png Transparent toolbar. the round conner at the left and right side. press any of them have the click events. (all of them have already implemented in the old toolbar version.) ...

SWT on OS X: unified toolbar?

Does SWT support OS-X-specific unified toolbars or button bars? ...

May I add toolbar manually in UIWindows?

I added UIWindow and its toolbar like: self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease]; NSArray * arr = [NSArray arrayWithObjects:@"test1", @"test2", nil]; [[self.window rootViewController] setToolbarItems:arr animated:NO]; No toolbar showing up. Is it doable? Thanks. ...