The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
43 views

How to apply corner radius to a UIView without issues?

Currently I'm applying a corner radius and shadow to multiple UIView's in a scrollview. I've noticed that adding a corner radius and shadow makes the scrollview lag like crazy whenever I scroll. How ...
1
vote
1answer
24 views

disabled canvas has different shape than enabled

I have a simple canvas: <mx:Canvas id="can" backgroundColor="#464343" x="32" y="33" width="45" height="60" ...
0
votes
1answer
78 views

corner radius on layer and shadows

I have a map view inside a cell and I want it to have corner radius and shadow. I either get only rounded corners OR only the shadow and no rounder corners when i set masks to bounds ON/OFF ...
0
votes
4answers
474 views

Setting the button radius programmatically in android

I have a button say myButton. I want to set the top left corner radius of the button programmatically. I'm looking for something like myButton.settopleftCornerradius(10); I have looked for ...
0
votes
1answer
74 views

self.window cornerRadius - without statusbar

I want to have rounded corners on my whole app, I used: [self.window.layer setCornerRadius:5.0]; [self.window.layer setMasksToBounds:YES]; self.window.layer.opaque = NO; But now my StatusBar has ...
1
vote
1answer
164 views

iPad Corner Radius Where App Meets Status Bar

I am trying to make some custom art for my app that will be shown at the top of the app, right up against the status bar. In order to make the art look good, I would like to know what the corner ...
0
votes
3answers
109 views

UIView cornerRadius - of what?

I am familiar with the cornerRadius property of UIView layers, exposed with the QuartzCore framework. The general rule of thumb, of course, is larger values create more rounded edges, and smaller ...
1
vote
1answer
304 views

C#/WPF - Adding a CornerRadius to a ToggleButton

I want create a ToggleButton with round corners by using my CornerRadius property. As you can see in the code below, i already added a cornerRadius property to my xaml ToggleButton to pass a radius ...
0
votes
2answers
133 views

Definitive method to have a UIImageView with rounded corners in a UITableView?

I've been a long time trying to find an acceptable method to add rounded corners to a UIImageView that is added as a subview in a UITableViewCell without impacting the scrolling performance of the ...
2
votes
1answer
323 views

Access corner radius of UITableViewCell in grouped TableView

It seems Apple changed the corner radius in iOS6 to about 7 (previously 10). I have a view behind my UITableView that needs to have the same corner radius then the UITableViewCell. My app sopports ...
1
vote
1answer
277 views

cornerRadius not working if replacing default view with custom subclass

Following setup: i have a popupViewController that has a custom UIView subclass as its view, done in loadView - (void)loadView { CGRect startingPopupSize = CGRectMake(0.0f, 0.0f, 300.0f, ...
0
votes
2answers
496 views

How to create UIButton in UIImageView's top left corner and bottom right corner

I wish to create delete button in imageview's top left corner and bottom right corner. but it doesn't look like what I needed. I wish both the buttons should be placed on corner of the Red border ...
4
votes
2answers
968 views

Something's wrong in Corner radius Android

I'm making my own search view for Android 2.3. I have. LinearLayout (Horizontal) AutoCompleteTextView ImageButton I added the button and AutoCompleteTextView to LinearLayout. I want to put a ...
0
votes
3answers
2k views

Custom rounded corners for first and last cell in a grouped UITableView

My iPhone app is currently displaying a grouped table with 2 sections. I tried to change the radius of the rounded corners on the first and last cells of each section (or on the same cell in the case ...
0
votes
1answer
200 views

CALayer: Maintaining cornerRadius on layer's contents

I've been looking at the CALayer's documentation and it seems like cornerRadius only affects the background of the layer and not the contents. Is there a way to apply the corner radius to the entire ...
0
votes
1answer
190 views

Label CornerRadius

Have a question. I have a dockpanel which contains an array of Label (Ractangles) inheirated from Border class, which contains CornerRadius property. So, everything is good, but when a start resizing ...
0
votes
1answer
80 views

Anyone tried to create directional buttons with the <corners> tag?

For whatever reason the following style doesn't work. It creates a button with square corners. But I'm trying to have the two left corners square and the two right corners rounded to create a button ...
1
vote
2answers
767 views

what is relation between masksToBounds and cornerRadius?

My scroll has some views that is cornerRadius = 10.0 and masksToBounds = YES. This causes a performance issue for scrolling my scroll view. Though I tried each view's shouldRasterize is set YES, the ...
3
votes
2answers
488 views

Set the corner radius of the content border

I want to have a window with the border radius of the content border is 5. Exactly like on the picture: How can I do this With C# and WPF ? Is there any way to do this with Windows API?
2
votes
2answers
827 views

UITableView cornerRadius with border performance issues on iOS

I have some interesting notice with scrolling performance on UITableView with cornerRadius, borderWidth and borderColor enabled. self.tableView.layer.cornerRadius = 10.f; ...
0
votes
1answer
134 views

Progressbar issue

I found a small difference between indeterminate progressbar and determinate progress-bar. The corner's styles are different. Determinate progress-bar seems a little round. I want to attach the image ...
1
vote
1answer
141 views

In WPF, can I somehow use TemplateBinding to set the CornerRadius of a templated Button?

I have a Button ControlTemplateemplate that I'd like to reuse, except for the CornerRadius of its Border, which I'd like to get from TemplatedParent so I can specify it in the Button declaration. ...
1
vote
1answer
96 views

UIView rounded corners with PatternImage

Here, cornerRadius is not working with PatternImage, Could you please help me? - (void)viewDidLoad { [super viewDidLoad]; myView.backgroundColor = [[UIColor alloc] ...
15
votes
4answers
6k views

how to set cornerRadius for only top-left and top-right corner of a UIView?

Is there a way to set cornerRadius for only top-left and top-right corner of a UIView? EDIT: I tried the following, but it end up not seeing the view anymore. Anything wrong with the code below? ...
0
votes
1answer
104 views

is there a way to not show the rounded corner for the top and bottom cell of each section in grouped UITableView?

I want to instead change them to be straight rectangles and adding a drop shadow on four sides of each section. Is there a way to do that? I tried the following on each cell, but it seems not work ...
1
vote
2answers
936 views

how to set the corner radius of the cells on UITableViewStyleGrouped?

I have a tableview, which has many sections. each section has just one cell. I wonder if I can set the cell's corner radius to what I wanted. Is there a way to do that?
2
votes
2answers
216 views

Why does the MultiBinding not work for CornerRadius

If i use an IValueConverter it works, while with an IMultiValueConverter returning the same value it does not, why is that? <Border Background="Red" Width="100" Height="100" ...
1
vote
1answer
889 views

Overriding default style for border makes my WPF window rounded

I override borders CornerRadius as a default style in the app.xaml file (like below) <Application x:Class="BorderCornerProblem.App" ...
1
vote
3answers
566 views

Cannot set CornerRadius value from static resource

I have defined a static resource: <UserControl x:Class="MyProject.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
0
votes
2answers
961 views

How to give CornerRadius to UIViewController Object iPhone

can't i give the cornerRadius to UIViewController Object. Thanks in advance.
0
votes
1answer
171 views

setRadiusCorner just at the bottom of the view

i have a view with rounded corners. I want to make it rounded just at the two bottom corners of the view. How can i do that? This is my code that makes the rounded corners for the view: CALayer ...
0
votes
4answers
1k views

No Effect using “border-radius” in IE9

I Googled this but couldn't find a solution. I'm applying corner-radius to my divs but IE9 doesn't show the effect. CSS: .ipleft { width: 512px; height:300px; -webkit-border-radius: 10px 0px 0px ...
0
votes
4answers
2k views

Flex 4.5 TabNavigator cornerRadius not working

I'm having the hardest time finding a way to simply add rounded tabs to a TabNavigator control. I have seen examples which seem to be really simple but they don't seem to work in Flex 4.5. Here is ...
3
votes
3answers
2k views

UISegmentedControl with square corners

I would like to modify UISegmentedControl with a subclass to remove the rounded corners. I can't seem to set the cornerRadius. Making the SegmentedControl wider than the screen (and therefor "chop" ...
2
votes
1answer
2k views

customize the Border property with CornerRadius for ListBox

I want to customize the following Listbox-display property of border with CornerRadius=5..can anyone help me to achieve it without changing the existing datatemplate code in the following Xaml code: ...
2
votes
2answers
2k views

WPF Border Object Border CornerRadius different from Border Background CornerRadius

I have two Borders on top of each other. One with a BorderThickness but no background, the other one without a border thickness, but with a background. Both Borders have a CornerRadius of 3. The ...
1
vote
1answer
1k views

Set a corner radius on a spark list Flex 4 air mobile

I'm creating a spark list in my flex mobile application and i want to do like a list on the iphone with a corner radius. Unfortunately there is no cornerRadius or simply radius in list styles. I call ...
4
votes
4answers
2k views

UIView animateWithDuration doesn't animate cornerRadius variation

I'm trying to animate the change of the cornerRadius of a UIView instance layer, but the variation of the cornerRadius takes place immediately. Here's the code: UIView *view = [[UIView alloc] ...
2
votes
1answer
1k views

Using UIColor tiled images as the background of a view doesn't work with cornerRadius

I have used UIColor colorWithPatternImage to get a tiled color. I set this as the background of my view. After this, any changes to view.layer.cornerRadius do not have any affect: it doesn't change ...
1
vote
1answer
732 views

MKMapView cornerRadius only works for upper left corner

i added a cornerRadius to layer of MKMapView something like [self.routeMapView layer].cornerRadius = 20.0f; this property effects only for upper left corner. Rest is not changed at all. I dont ...
1
vote
2answers
1k views

Android GradientDrawable - Corner Radii issue

I am trying to debug a problem I am having with ExpandableListAdapter.getChildView. I have defined a Drawable with a shape containing a gradient and a corner with a radius of 1 for the background ...
0
votes
1answer
566 views

WPF CornerRadius turn the Corners to the outside

Im trying to make my own ControlTemplate for an menu. Id like to turn the corners of some items to the outside. So that it look like the Word TabItems, i cant post an image im sry. But i hope you ...
1
vote
1answer
3k views

WPF: Button template w/ cornerRadius and Bevel looks wrong

I changed the ControrTemplate of a button, gave it a border with CornerRadius and BevelBitmpaEffect. Looks decent enough for the minimal effort. Put it on a colored background and then the problem ...
4
votes
3answers
2k views

UITABLEVIEW comes to a crawl when adding a UIABEL with cornerRadius to each cell

I'm adding a UILabel to each cell in my table view. This presents no problem innitially. When I round the corners of the UILabel using layer.cornerRadius scrolling the table view grinds to a halt. ...
1
vote
2answers
3k views

Scrolling Content Inside A Border With CornerRadius

I'm looking for help with a WPF problem I've been wrestling with for a while. I've styled a tab view, moving the tabs onto the left and displaying them vertically. These tabs sit inside a border with ...
2
votes
2answers
2k views

Can you databind to CornerRadius via WPF Styles?

I have a Button style and can't seem to property databind the border's CornerRadius property to the template. This is a dependency property, so it should be data bindable. I wonder if I'm missing ...