themes

Styling tabBar-indicator with ActionBarSherlock

烂漫一生 提交于 2019-12-12 21:31:52
问题 I am currently not able to customize the tab-indicator in my app when using Actionbarsherlock. I am trying to change the default color (blue) to white of the indicator. All other customization works as intended. I am not even able to remove the tab-indicator. Have I missed something in my XML-code or what might be the problem? Also note, my min-SDK is set to 14 in the manifest -file. ALL help is needed so I can manage to find the source of the problem :/ Regards Tabs.java @Override public

Is there a component that behaves like a TBitBtn that is properly themed? [closed]

那年仲夏 提交于 2019-12-12 18:28:24
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . Is anyone aware of an existing Delphi component, that is properly themed like a TButton (has a fade in/fade out effect upon mouse hover in Windows 7 and above) supports Glyphs like TBitBtn but WITHOUT using ImageLists (the same way TBitBtn does). If there is no such component available, would it be possible to

changing theme of C# windows application

天涯浪子 提交于 2019-12-12 18:12:46
问题 in ASP we have so many ways to change theme . but is there any way for chanigngthe whole theme of a windows application/? 回答1: By default a winform app will inherit windows theme but you can explicitly change some ui properties like color,font etc. You can also consider moving to WPF for better and easy to implement UI. 回答2: Nope, at least not easily. But you could give WPF a try, you will need to upgrade to C# 3.0 for that. 回答3: Some 3rd party component sets support theming. Example :

How to customize the top status bar in an Android app?

跟風遠走 提交于 2019-12-12 17:37:57
问题 Specifically I want to change the text and background colors. Is it possible to change the colors of the 'animated progress wheel' too? Can I use a theme to do this? Can anyone point me to an example theme I can look at? 回答1: I believe you can use a custom view for the app's title bar. See the answers to this question: Custom title with image 回答2: If by "top status bar" you mean where the battery meter and signal meter and notifications go, you cannot change it from an app. You can set a

Allow the user to change CSS design elements with a dropdown menu?

夙愿已清 提交于 2019-12-12 15:59:21
问题 So, since I have problems deciding an absolute theme for my site, I'd like to let the user choose a theme from a dropdown menu, and when an option is clicked, it'll change the background image, background color, and background positioning. eg. If the user chose the "Mario Bros 3" theme, they'd get background-image:url('smb3.jpg'); background-repeat:repeat-x; background-position:left bottom; background-attachment: fixed; background-color: #6899f8; And if you select "Zelda LTTP" theme, you'd

Transparent background of xp-themed control

左心房为你撑大大i 提交于 2019-12-12 12:14:58
问题 I have a few window controls drawn on a bitmap as well as on colored background on a dialog-box. Would there be some possible way to make the window controls' background transparent? Currently they show the default colored background of a dialog-box. Example - I tried to paste a solid blue bitmap and the two button controls have the noticeable default colored-rectangle background. 回答1: This is easily solved by providing Windows with a handle to whichever brush you want it to use to paint your

Vaadin can't find my themes

感情迁移 提交于 2019-12-12 11:45:20
问题 I've got below error: INFO: Requested resource [/VAADIN/themes/mytheme/styles.css] not found from filesystem or through class loader. Add widgetset and/or theme JAR to your classpath or add files to WebContent/VAADIN folder. I'm using intellij. Here is my folder structure: My mytheme.scss: @import "../valo/valo.scss"; @mixin mytheme { @include valo; .v-button { color: blue; background: yellow; } } My styles.scss: @import "mytheme.scss"; @import "addons.scss"; .mytheme { @include mytheme;

Change default background color of buttons while using a theme?

自古美人都是妖i 提交于 2019-12-12 11:20:35
问题 I have the following resources XML in my grid: <Grid.Resources> <ResourceDictionary> <ResourceDictionary.MergedDictionaries> <ResourceDictionary Source="/PresentationFramework.Classic;component/themes/classic.xaml" /> </ResourceDictionary.MergedDictionaries> </ResourceDictionary> </Grid.Resources> And this works, I load in the classic theme. But the classic theme button backgrounds are very white? Is there any way I can change the default background color of buttons in this theme? 回答1: You

Implicit theme error:The property 'Content' was not found in type 'System.Windows.Controls.Control'

被刻印的时光 ゝ 提交于 2019-12-12 10:48:42
问题 I have got an error while trying to upgrade our large project to SL4. I didn't write the original theme and my theme knowlege isn't great. In my demo app I have a Label and a LabelHeader(which i have created and is just a derived class from Label with DefaultStyleKey = typeof(LabelHeader); I am styling the LabelHeader like this: <Style TargetType="themeControls:LabelHeader"> <Setter Property="Template"> <Setter.Value> <ControlTemplate> <DataInput:Label FontSize="{TemplateBinding FontSize}"

Guidance on how to make a theming mechanism that effects all components in Angular?

喜欢而已 提交于 2019-12-12 10:31:57
问题 Question: I need guidance on how to write a mechanism in Angular to set the "Look and Feel" of components globally in my application. Please note, I'm trying to learn @ngrx/platform and I thought this would be an interesting design constraint; however, I'm willing to let it go if it just doesn't make sense. Breakdown: I have an application in progress with many components. Each component in my application has currently 3 possible "look and feels(L&F)": Morning (sepia) Afternoon (white)