style

Given a styled WPF DependencyObject, how can I get the Style Key in code?

I have a set of controls bound to data, on which I would like to programmaticaly add validators to the bindings. Currently I'm able to iterate over the visual tree to find those controls with bindings, and also add my validators to these controls. But to further specify which controls should have specific validation I wanted to use style...

WPF Change Style's Brush Color

I have the following styles in WPF to draw and color a box, which is a custom control with various PART_Name items defined in a ResourceDictionary: <ResourceDictionary> . . . <Brush x:Key="BoxStroke">#FFD69436</Brush> <LinearGradientBrush x:Key="BoxBrush" StartPoint="0,0" EndPoint="0,1"> <LinearGradientBrush.GradientStops> ...

Styling GridSplitter wpf C#

i want to style my GridSplitter like adding dots on it (as found on http://msdn.microsoft.com/en-us/library/aa970265.aspx). i also want to change gridsplitter color on mouseOver, or apply Aero Theme. <Style x:Key="GridSplitterStyle1" TargetType="{x:Type GridSplitter}"> <Setter Property="Background" Value="{DynamicResource {...

Eclipse doesn’t recognize style in the Android Layout builder?

Since Android supports styles and it's good practice to use them (similar to CSS), I made a new style and applied it to 3 buttons. The Layout builder in Eclipse did not register the changes and either broke (showed nothing) or didn't apply styles at all. After running the app in the emulator, styles are correctly applied. So is there ...

Flex: changing Flex component styles in AS3

Hi, in MXML, there is a Button class which you can instantiate like so: <mx:Button id="something /> but what if you wanted to dynamically build this in AS3 and add it to the Flex app dynamically, without the use of components (just AS3) and then modify Flex's styles, for example, here you access the Button's properties and set them: ...

After a "SetterCollectionBase" is in use (sealed), it cannot be modified.

<UserControl x:Class="FlowItem" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="300" Height="300"> <UserControl.Resources> <Style TargetType="Label"> <Style.Setters> <Setter Property="Background" Value="AliceBlue" ></Setter> </...

Styling a QScrollBar by QStyle

I try to style a QScrollBar via a custom QStyle but if i draw nothing in drawComplexControl for the QScrollBar, the required space for the scrollbar on the parent widget is painted black. If i do the same with, eg a QToolButton simply the toolbutton is not painted but there is no black rect on the widget. That is what i would expect. But...

WPF ComboBox DropDown arrow color

Hello I am trying to work out a style for a combo box that has a navy background with white text, so I want the drop down arrow to be white also (the xaml I have so far is below). How can I do that? Cheers, Berryl <Style x:Key="ComboBoxStyle" TargetType="ComboBox"> <Setter Property="Background" Value="{StaticResource header...

using jqgrid style for usual Table in asp.net mvc

I'd prefer using Table and td instead of JqGrid but i like JqGrid styles. has anyone used jqgrid style for usual Grid of asp.net MVC(i mean Table and td) before? ...

browser default style

Hi, do you know where can i get the browser stylesheet? I try to explain me better. I need to know the default style properties that the browser applies to elements (not a specific browser). Is there a web site that talks about this? If not, have you got any idea of how to get those informations in javascript? I don't want to do an appli...

Allow user to change the default web part styles

Hi, I have a web part which uses many SharePoint controls like menu, SPGrid, tool bar etc. I want the user to be able to change the style by specifying an external CSS file. Can somebody tell me how I can achieve this? ...

Drupal 6 Forms formatting

I am trying to create a form in drupal 6 that has multiple items on the same line. More specificly, I want a right alligned form what has a textfield, dropdown-box, and button all on the same line. I know how to create the items, but drupal tends to put them all on seperate lines. How do I put it on one line? Thanks ...

WPF custom derived control style

I have a custom control derived from Button: class MyControl : Button{} And suppose, this class is empty (has no members). In the application's main window resources I use ResourceDictionary that contains styles for most WPF controls (so called theme): <ResourceDictionary Source="BureauBlue.xaml" /> So, all controls on the...

Creating a Style in code behind

Hi, Does anyone know how to create a wpf Style in code behind, I can't find anything on the web or MSDN docs. I have tried this but it is not working: Style s = new Style(typeof(TextBlock)); s.RegisterName("Foreground", Brushes.Green); s.RegisterName("Text", "Green"); breakInfoControl.dataTextBlock.Style = s; Cheers, James ...

How to get the css with in inline styles using jquery

I am loading the styles dynamically from the database in my asp.net mvc (C#) application. I am trying to change some of the properties like (background, font color, font size,...) of the loaded inline style. I am using jquery.rule to do this. I need to update the complete inline style including the changes, back to the database using j...

Inherited style throwing an InvalidOperationException when executing a PauseStoryBoard action

The XAML below does the following: when the mouse is over a textblock, its text will enlarge, when the mouse leaves the textblock its text shrinks. When the mouse is clicked the textsize freezes. This works as expected when the style of the Textbox is directly set to the SwellingTexblock resource. However, when the style is set to the S...

Dynamicaly Chaning the <textarea > size,style

How can i change the field size diynamicaly? I have a select field and there are 3 options with different values. So if the user selects one of them in the you see the values. But how can i change the size that the values from option field fits in the function changeText() { var select = document.get...

Should commit messages be written in present or past tense?

So which is it that you think is better and more intuitive? Fixed the XXX bug in YYY Fix the XXX bug in YYY Fixes the XXX bug in YYY Fixing the XXX bug in YYY Please provide your rationales. Note I am asking from your general perspective, meaning you should not try to associate this with your preferred svn/cvs tools or programming la...

How to assign a dynamic resource style in code?

I want to produce in code the equivalent of this in XAML: <TextBlock Text="Title:" Width="{Binding FormLabelColumnWidth}" Style="{DynamicResource FormLabelStyle}"/> I can do the text and the width, but how do I assign the dynamic resource to the style: TextBlock tb = new TextBlock(); tb.Text = "Title:"; tb.Wid...

Changing more than one style attribute with Javascript

I need to change more than one style attribute for a given element. I know how to change one: document.getElementById(today).style.visibility= "visible"; but am unsure of the syntax for changing more than one e.g. visibility,width, height and font-color. ...