0
votes
1answer
26 views
How can I prevent ASP.NET from adding to the inline styles?
I have an element that I'm trying to style:
<tr runat="server" id="row" >
...
</tr>
And I set the style programmatically:
row.Attributes("style") = "background: #cc …
0
votes
0answers
16 views
How to bind opacity of border in ControlTemplate to property of databound item?
Hi,
I'm taking my first serious steps in WPF, so please be gentle :-) I have a ListBox, which will be bound to a list of objects I create from code. These objects contain a boolea …
1
vote
4answers
32 views
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 …
0
votes
0answers
14 views
[jQuery UI - Accordion] Styling active header?
Hi,
Simple issue: I am using Accordion without any UI themes (just barebones, using my own CSS).
So far, so good, except that I cannot figure out how to set an "active" style for …
0
votes
3answers
31 views
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 …
3
votes
4answers
69 views
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 you …
1
vote
4answers
53 views
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 …
0
votes
3answers
70 views
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,...) …
0
votes
1answer
11 views
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 te …
1
vote
2answers
54 views
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( …
0
votes
3answers
44 views
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 …
2
votes
3answers
46 views
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 …
0
votes
2answers
36 views
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?
8
votes
14answers
485 views
Which is better coding style?
During a code review, a senior dev commented on some nesting I had going on in my code. He suggested I set a bool value so that I never have more than one level of nesting. I thi …
0
votes
1answer
58 views
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). …
