17
votes
29answers
3k views
What is the easiest or fastest way to make CSS render the same in all browsers
Making a web page display correctly im all major browsers today is a very time consuming task.
Is there a easy way to make a CSS style that looks identical in every browser?
Or at least do you have …
11
votes
12answers
584 views
Should I *always* favour implictly typed local variables in C# 3.0?
Resharper certainly thinks so, and out of the box it will nag you to convert
Dooberry dooberry = new Dooberry();
to
var dooberry = new Dooberry();
Is that really considered the best style?
9
votes
8answers
3k views
How to apply multiple styles in WPF
In WPF, how would I apply multiple styles to a FrameworkElement? For instance, I have a control which already has a style. I also have a separate style which I would like to add to it without …
7
votes
9answers
605 views
Spartan Programming
I really enjoyed Jeff's post on Spartan Programming. I agree that code like that is a joy to read. Unfortunately, I'm not so sure it would necessarily be a joy to work with.
For years I have read …
6
votes
4answers
2k views
Latex styles - what do you use and where to find them
What Latex styles do you use and where do you find them?
The reason I'm asking this is that it seems that some 99.9999% of all styles on the internet are copies of each other and of a physics exam …
5
votes
5answers
218 views
What’s css style “p + p”?
Using firebug, I found that blueprint css framework is applying this style to my <p> tags:
p + p {
margin-top:-1.5em;
text-indent:2em;
}
I don't know what the + means.
What's the difference …
4
votes
2answers
273 views
Is it possible to set a style in XAML that selectively affects controls?
In <Window.Resources> I have defined following style:
<Style x:Key="textBlockStyle" TargetType="TextBlock">
<Setter Property="Margin" Value="5,0,5,0"/>
…
3
votes
14answers
321 views
Is it something bad to use <BR />?
Hi,
Is it something bad to use <BR/> tags? Why I ask this is, in our development team it was one of the first advices to me not use <BR/> but to use styles.
But why? Are there some …
3
votes
4answers
271 views
Deactivate FocusVisualStyle globally
I want to globally deactivate the focus rectangles in my WPF application. For single controls that can be done via
<Style TargetType="Button">
<Setter Property="FocusVisualStyle" …
3
votes
2answers
425 views
Can WPF themes be used to include multiple skins for an application that can be changed at runtime?
WPF allows a control library to provide different resource dictionaries for different system themes, essentially allowing an application to match the operating system's selected visual theme (Aero, …
3
votes
3answers
1k views
How to make WPF resource styles switchable at runtime?
I've got style resources in WPF working so that in my App.xaml I can define whether the customer or administrator layout is used. This works nicely by getting all the style out of the main XAML in a …
3
votes
1answer
634 views
How to connect Themes/Generic.xaml to window1.xaml?
I have the following button style in Themes/Generic.xaml and I want it to apply to buttons everywhere in my WPF application.
How do I connect it to my window1.xaml for instance?
<Style …
3
votes
3answers
512 views
How do you display styles in a HTML textarea
I am trying to add different styles within a textarea eg bold, different colors etc
WYSIWYG editors (eg tinyMCE) used in web pages typically do this but I am having trouble working out how they do …
3
votes
3answers
20k views
How do I style (css) radio buttons and labels?
Given the code bellow, how do I style the radio buttons to be next to the labels and style the label of the selected radio button differently than the other labels?
<div class="input radio">
…
2
votes
2answers
51 views
Where to find Generic.xaml for native WPF controls?
Where to find Generic.xaml (or other code with the default look) for native WPF controls such as Button, CheckBox, TextBox, etc?
