Questions tagged [appearance]
333 questions
3
votes
0 answers
Remove border around the tabs in TabControl
When you create a TabControl, you always have an ugly 2 pixel (or so) big white border around it. I wasn't able to find to way to remove it. TabControl doesn't have a BorderStyle.
This is most annoying for a media player where everything around the…

CCCP
- 215
- 3
- 14
3
votes
2 answers
Making an old fashioned (Windows 95-esque) GUI in Java
I'm currently working on a project and I'd like it to look as though it were from the windows 95 era. I spent a lot of time searching for a pluggable Look and Feel that matched the Windows 95 aesthetic, but everything I could find looked too…

Zachary Salmon
- 31
- 3
3
votes
0 answers
How can I add a custom right aligned image on Navbar with setRightBarButtonItem?
I'm in xcode 4.3 targeting iOS 5.1 and I'm trying to have a logo appear in the right hand side of ALL navbars in my app.
First I used the following code in EVERY view controller to make it work
UIButton* fakeButton = (UIButton *) [[UIImageView…

RobDigital
- 515
- 1
- 7
- 19
2
votes
1 answer
UIButton Insets For Different States
I have a UIBarButtonItem containing a button, on which I've set custom background images for the pressed/unpressed states. The pressed image is moved down by 4px, so the text when it's unpressed looks off center vertically. I know I can use [button…

Echilon
- 10,064
- 33
- 131
- 217
2
votes
2 answers
setTintColor: on UINavigationBar appearance has no effect
This is my code to change the color of my app's tab bar and navigation bar:
UIColor* color = [UIColor colorWithPatternImage:[UIImage imageNamed:@"blue.jpeg"]];
//set colors
[[UINavigationBar appearance] setTintColor:color];
[[UITabBar appearance]…

eric.mitchell
- 8,817
- 12
- 54
- 92
2
votes
3 answers
Keep Window Inactive In Appearance Even When Activated
Is there a way to keep a window inactive looking, even if it contains focus? I have two forms (A and B). After the user interacts with A, I transfer focus back to B. The result of the focus transfers (the user clicking on the A, then focus being…

Zach Johnson
- 23,678
- 6
- 69
- 86
2
votes
1 answer
Keyboard Appearance Defaults to UIKeyboardAppearanceDefault on Dismissal
First time Stack Overflow poster. Please bear with me! :)
I have a set of UITextFields whose keyboard appearance I set in Interface Builder. I'm using the UIKeyboardAppearanceAlert appearance (the translucent look) for my keyboards. However,…

CIFilter
- 8,647
- 4
- 46
- 66
2
votes
6 answers
How can I get a div to appear next to the element the mouse is hovering on top of? (jQuery)
I have a bunch of images wrapped in links such as these:


Tsundoku
- 9,104
- 29
- 93
- 127
2
votes
0 answers
CSS appearance dooes not working even at MDN
I think CSS 'appearance' not working!
The examples in https://developer.mozilla.org/en-US/docs/Web/CSS/appearance is not working for me now.
enter image description here
Is there any change by clicking the option in MDN example?
But i cant any…

박영진
- 21
- 2
2
votes
1 answer
How do I create simple round-rectangle buttons with Java Swing?
I'm using a simple "Calculator" project as an example of rounded-rectangular buttons. The entire project consists of one small class file. Here it is:
import java.awt.BorderLayout;
import java.awt.GridLayout;
import java.awt.event.KeyEvent;
import…

Chap
- 3,649
- 2
- 46
- 84
2
votes
1 answer
change tvOS tab bar focus color
I created an appleTV app on tvOS 13! and I'm faced with some tabbar customization problems.
I want to change the focused item color, I can change the text color, but I can't change the white focus background!
And also the tabBar add an alpha to 0.5…

sivanesan Jegathas
- 61
- 1
- 6
2
votes
0 answers
UISearchBar.appearance() not working in iOS13
So I wanted to do some custom styling on my search bars inside my navigation controllers with large titles that are setup like this;
navigationBar.prefersLargeTitles = true
To do the styling I want to apply it platform wide, so I don't have to…
user2023106
2
votes
1 answer
Reading Default Appearance of an EnterpriseArchitect Element by script
the EA API provides the Element.setAppearance() method for setting the default appearance of an element in diagrams; the Style attribute, for the corresponding diagramObjects, is readable&writable. But what about getting the default appearance of an…

Sergio
- 63
- 4
2
votes
2 answers
How to change font color of text in VSCode integrated terminal?
I want to easily distinguish between my input commands in the VSCode terminal and the terminal output. So if I could change the colour or font of the, in my case, "my-Macbook-Air:Folder myname$", it would be very helpful.
Sample image from…
user10063119
2
votes
1 answer
C# GUI question
Does someone know some good C# GUI libraries (opensource / commercial).
I want to develop my own graphics user interface, probably something Acronis-like.
Skin support is welcome, but not necessary.
Thank you.

Yippie-Ki-Yay
- 22,026
- 26
- 90
- 148