active questions tagged style - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T04:57:57Z http://stackoverflow.com/feeds/tag/style http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1934793/style-a-form-select-using-javascript-no-framework 0 style a form (select) using javascript, no framework? fatjoez 2009-12-20T04:02:42Z 2009-12-20T04:30:08Z <p>anyone know how i can style a form element with javascript, but without a framework? Found a nice plugin for jquery but I don't use jquery at all on my website so I want to avoid it if possible..</p> <p>I want to create a select box that looks like this:</p> <p><a href="http://iforce.co.nz/i/qebncmoz.png" rel="nofollow">http://iforce.co.nz/i/qebncmoz.png</a></p> <p>to clarify, i want to set an image/background on the select box so that I can have a custom dropdown arrow</p> http://stackoverflow.com/questions/1927933/does-resharper-make-you-lazy 0 Does resharper make you lazy? ForeverDebugging 2009-12-18T12:25:43Z 2009-12-19T02:16:19Z <p>I've been looking at using resharper and from the reviews I've seen, people who start using it never go back.</p> <p>I'm wondering if using resharper helps you pick up errors when looking at code without resharper, or does it decrease this ability becaues you get use to relying on resharper to identify problems?</p> http://stackoverflow.com/questions/1929057/how-many-problems-are-in-the-following-date-parsing-routines-that-come-from-a-rea 0 How many problems are in the following date parsing routines that come from a real-world project? LES2 2009-12-18T16:01:52Z 2009-12-18T16:07:11Z <p>These methods are laughably stupid, IMO, but I want to get a feel for what other developers think of such code. Criticisms may include technical and stylistic errors. Corrections may use anything from Apache commons-lang, such as StringUtils, DateUtils, etc, as well as anything in Java 5. The code is intended for a web application, if that would affect your style. These four methods are all defined in the same file, too, if that matters. Did I mention that there are no unit tests for this code either?! What would you do to fix the situation? I just happened upon this file, and it's not my immediate task to fix this code. I could in my spare time, if so desired.</p> <p>Method one:</p> <pre><code> public static boolean isFromDateBeforeOrSameAsToDate(final String fromDate, final String toDate) { boolean isFromDateBeforeOrSameAsToDate = false; Date fromDt = null; Date toDt = null; try { fromDt = CoreUtils.parseTime(fromDate, CoreConstants.DATE_PARSER); toDt = CoreUtils.parseTime(toDate, CoreConstants.DATE_PARSER); // if the FROM date is same as the TO date - its OK // if the FROM date is before the TO date - its OK if (fromDt.before(toDt) || fromDt.equals(toDt)) { isFromDateBeforeOrSameAsToDate = true; } } catch (ParseException e) { e.printStackTrace(); } return isFromDateBeforeOrSameAsToDate; } </code></pre> <p>Method two:</p> <pre><code> public static boolean isDateSameAsToday(final Date date) { boolean isSameAsToday = false; if (date != null) { Calendar current = Calendar.getInstance(); Calendar compare = Calendar.getInstance(); compare.setTime(date); if ((current.get(Calendar.DATE) == compare.get(Calendar.DATE)) &amp;&amp; (current.get(Calendar.MONTH) == compare .get(Calendar.MONTH)) &amp;&amp; (current.get(Calendar.YEAR) == compare .get(Calendar.YEAR))) { isSameAsToday = true; } } return isSameAsToday; } </code></pre> <p>Method three:</p> <pre><code> public static boolean areDatesSame(final String fromDate, final String toDate) { boolean areDatesSame = false; Date fromDt = null; Date toDt = null; try { if (fromDate.length() &gt; 0) { fromDt = CoreUtils.parseTime(fromDate, CoreConstants.DATE_PARSER); } if (toDate.length() &gt; 0) { toDt = CoreUtils.parseTime(toDate, CoreConstants.DATE_PARSER); } if (fromDt != null &amp;&amp; toDt != null) { if (fromDt.equals(toDt)) { areDatesSame = true; } } } catch (ParseException e) { if (logger.isDebugEnabled()) { e.printStackTrace(); } } return areDatesSame; } </code></pre> <p>Method four:</p> <pre><code> public static boolean isDateCurrentOrInThePast(final Date compareDate) { boolean isDateCurrentOrInThePast = false; if (compareDate != null) { Calendar current = Calendar.getInstance(); Calendar compare = Calendar.getInstance(); compare.setTime(compareDate); if (current.get(Calendar.YEAR) &gt; compare.get(Calendar.YEAR)) { isDateCurrentOrInThePast = true; } if (current.get(Calendar.YEAR) == compare.get(Calendar.YEAR)) { if (current.get(Calendar.MONTH) &gt; compare.get(Calendar.MONTH)) { isDateCurrentOrInThePast = true; } } if (current.get(Calendar.YEAR) == compare.get(Calendar.YEAR)) { if (current.get(Calendar.MONTH) == compare.get(Calendar.MONTH)) { if (current.get(Calendar.DATE) &gt;= compare .get(Calendar.DATE)) { isDateCurrentOrInThePast = true; } } } } return isDateCurrentOrInThePast; } </code></pre> <p>Here is how I would tend to write the same thing (well, first I would write unit tests, but I'll skip that here).</p> <pre><code> public static int compareDatesByField(final Date firstDate, final Date secondDate, final int field) { return DateUtils.truncate(firstDate, field).compareTo( DateUtils.truncate(secondDate, field)); } public static int compareDatesByDate(final Date firstDate, final Date secondDate) { return compareDatesByField(firstDate, secondDate, Calendar.DATE); } // etc. as required, although I prefer not bloating classes which little // methods that add little value ... // e.g., the following methods are of dubious value, depending on taste public static boolean lessThan(int compareToResult) { return compareToResut &lt; 0; } public static boolean equalTo(int compareToResult) { return compareToResut == 0; } public static boolean greaterThan(int compareToResult) { return compareToResut &gt; 0; } public static boolean lessThanOrEqualTo(int compareToResult) { return compareToResut &lt;= 0; } public static boolean greaterThanOrEqualTo(int compareToResult) { return compareToResut &gt;= 0; } // time-semantic versions of the dubious methods - perhaps these go in TimeUtils ? public static boolean before(int compareToResult) { return compareToResut &lt; 0; } public static boolean on(int compareToResult) { return compareToResut == 0; } public static boolean after(int compareToResult) { return compareToResut &gt; 0; } public static boolean onOrBefore(int compareToResult) { return compareToResut &lt;= 0; } public static boolean onOrAfter(int compareToResult) { return compareToResut &gt;= 0; } </code></pre> <p>Clients could then use the method as follows:</p> <pre><code>/* note: Validate library from Apache Commons-Lang throws * IllegalArgumentException when arguments are not valid * (this comment would not accompany actual code since the * Javadoc for Validate would explain that for those unfamiliar with it) */ Validate.isTrue(onOrAfter(compareDatesByDate(registrationDate, desiredEventDate), "desiredEventDate must be on or after the *day* of registration: ", desiredEventDate); </code></pre> http://stackoverflow.com/questions/1906570/possible-to-access-default-styles 1 Possible to access default styles Nils 2009-12-15T10:42:09Z 2009-12-18T15:42:20Z <p>Somewhere I read that ExpressionBlend can create copies of the default style of a wpf control for the developer to edit.<br> However, VisualStudio can not. (At least I haven't found a way...)</p> <p>Is it possible to access/view the default styles (and templates) of wpf controls.</p> <p>A Gui would be nice, but a (web)-resource to view the styles would also do.</p> http://stackoverflow.com/questions/72312/how-should-i-capitalize-perl 3 How should I capitalize Perl? pdcawley 2008-09-16T13:41:32Z 2009-12-18T04:00:21Z <p>PERL? Perl? perl? What's good style?</p> <p>I know the answer&mdash;I just wanted to make sure the question was out there and questioners were aware that there is a correct form.</p> http://stackoverflow.com/questions/1914408/jquery-ui-style-customization 0 jquery ui style customization manu1001 2009-12-16T12:35:46Z 2009-12-16T12:40:26Z <p>how do i change the tab size, font size etc for my jquery accordion?</p> http://stackoverflow.com/questions/1910819/what-kind-of-grammar-do-you-use-for-comments 0 What kind of grammar do you use for comments? [closed] Steven 2009-12-15T22:18:33Z 2009-12-15T23:22:22Z <p>For example, for a comment describing</p> <pre><code>mq_open() { } </code></pre> <p>Do you use the imperative </p> <pre><code>// open a message queue </code></pre> <p>or third person?</p> <pre><code>// opens a message queue </code></pre> http://stackoverflow.com/questions/1881749/setting-wpftoolkit-datagrid-column-editing-style 1 Setting WpfToolkit datagrid column editing style. Wpf Newbie 2009-12-10T15:28:21Z 2009-12-14T14:42:04Z <p>Hi, How to make a single datagrid column editable if a particular condition is true?</p> <p>I'm using MVVM pattern in my application. </p> <pre><code> Model :: public class Book : INotifyPropertyChanged { public int BookId {get; set;} public string Title {get; set;} public string SerialNumber {get; set;} public bool CanEditSerialNumber {get; set;} // Allows editing serialnumber if this property is set to true. } </code></pre> <p>ViewModel::</p> <pre><code>public class MyViewModel : INotifyPropertyChanged { DbEntities _dbEntities; // ADO.Net entity model. public ObservableCollection&lt;Book&gt; Books {get; set;} public MyViewModel() { this.ListAllBooks(); } public void ListAllBooks() { _dbEntities = new DbEntities(); var book = from _book in _dbEntities.Book select new Book() { BookId = _book.BookID, Title = _book.Title SerialNumber = _book.ISBN, CanEditSerialNumber = _book.HasSerialNumber } Books = new ObservableCollection&lt;Book&gt;(book); OnPropertyChanged("Books"); } } </code></pre> <p>View:: I bind the ObservableCollection Books to a WpfToolkit datagrid.</p> <pre><code>&lt;WpfToolkit:DataGrid Name="dgBooks" ItemSource = {Binding Books} ....&gt; &lt;WpfToolkit.DataGrid.Columns&gt; &lt;!-- Here I want to display Book Title and SerialNumber --&gt; &lt;CustomControls:LabelTextBoxColumn Binding={Binding Title} ElementStyle={StaticResource myLabelStyle} /&gt; &lt;!-- This column should be editable only if CanEditSerialNumber property is set to true. --&gt; &lt;CustomControls:LabelTextBoxColumn Binding={Binding SerialNumber} ElementStyle={StaticResource myLabelStyle} EditElementStyle={StaticResource myTextBoxStyle}/&gt; &lt;/WpfToolkit.DataGrid.Columns&gt; </code></pre> <p>Is it possible to make only a single datagrid column editable based on a boolean value?</p> http://stackoverflow.com/questions/1895867/wpf-restyle-all-controls-with-scroll-bars 1 WPF: Restyle all controls with scroll bars Néstor Sánchez A. 2009-12-13T07:47:38Z 2009-12-13T21:40:53Z <p>How can I change the style -ONCE- for the scrollbars shown by all controls (listbox, treeview, scrollbarviewer, richtextbox, etc...)?</p> http://stackoverflow.com/questions/1893332/html-table-of-forms 2 HTML: table of forms? Igor 2009-12-12T12:55:21Z 2009-12-12T13:05:03Z <p>I frequently find myself wanting to make a table of forms -- a bunch of rows, each row being a separate form with its own fields and submit button. For instance, here's an example pet shop application -- imagine this is a checkout screen which gives you the option to update the quantities and attributes of the pets you've selected and save your changes before checking out:</p> <pre><code>Pet Quantity Color Variety Update snake 4 black rattle update puppy 3 pink dalmatian update </code></pre> <p>I would love to be able to do this using HTML that looks like this:</p> <pre><code>&lt;table&gt; &lt;thead&gt;&lt;tr&gt;&lt;th&gt;Pet&lt;/th&gt; &lt;th&gt;Quantity&lt;/th&gt; &lt;th&gt;Color&lt;/th&gt; &lt;th&gt;Variety&lt;/th&gt; &lt;th&gt;Update&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt; &lt;tbody&gt; &lt;tr&gt; &lt;form&gt; &lt;td&gt;snake&lt;input type="hidden" name="cartitem" value="55"&gt;&lt;/td&gt; &lt;td&gt;&lt;input name="count" value=4/&gt;&lt;/td&gt; &lt;td&gt;&lt;select name="color"&gt;&lt;/select&gt;&lt;/td&gt; &lt;td&gt;&lt;select name="variety"&gt;&lt;/select&gt;&lt;/td&gt; &lt;td&gt;&lt;input type="submit"&gt;&lt;/td&gt; &lt;/form&gt; &lt;/tr&gt; &lt;/tbody&gt; &lt;/table&gt; </code></pre> <p>This is basically a table full of forms, one form per row. Hitting update once allows you to update that specific row (this is not a real example, my real applications really do require independence of rows).</p> <p>But this is not valid HTML. According to spec, a <code>&lt;form&gt;</code> has to be either completely inside a <code>&lt;td&gt;</code> or completely outside a <code>&lt;table&gt;</code>. This invalid html breaks javascript libraries and is a huge pain to deal with. </p> <p>I end up making one table to contain column headings, and then making one table per form. But this requires fixed column widths to have the inputs lined up in neat columns, which is sub-par. How do you end up dealing with this problem? Is there an obvious easy solution I'm missing? How to I make a table of forms?</p> http://stackoverflow.com/questions/355420/how-to-set-wpfs-grid-rowdefinitions-via-style 1 How to set WPF's Grid.RowDefinitions via Style David Schmitt 2008-12-10T08:31:32Z 2009-12-12T11:00:03Z <p>Hi!</p> <p>I'm using a couple of <code>Grid</code>s to format multiple <code>GridViewColumn.CellTemplate</code>s:</p> <pre><code>&lt;ListView SharedSizeScope="true"&gt; &lt;ListView.View&gt; &lt;GridView&gt; &lt;GridViewColumn&gt; &lt;GridViewColumn.CellTemplate&gt; &lt;DataTemplate&gt; &lt;Grid&gt; &lt;Grid.RowDefinitions&gt; &lt;RowDefinition SharedSizeGroup="foo" /&gt; &lt;!-- ... --&gt; </code></pre> <p>I tried to extract the <code>RowDefinition</code>s (which are the same for all columns) into a <code>Style</code>:</p> <pre><code>&lt;Style TargetType="{x:Type Grid}"&gt; &lt;Setter Property="RowDefinitions"&gt; &lt;Setter.Value&gt; &lt;RowDefinition SharedSizeGroup="foo" /&gt; &lt;!-- ... --&gt; </code></pre> <p>But the compiler complains:</p> <blockquote> <p>Error: The Property Setter 'RowDefinitions' cannot be set because it does not have an accessible set accessor.</p> </blockquote> <p>Which is kind of obvious, but not very helpful.</p> <p>How could I avoid specifying the row definitions multiple times (see also <a href="http://c2.com/cgi/wiki?DontRepeatYourself" rel="nofollow">Don't Repeat Yourself</a>) short of coding up a custom derivation of the <code>Grid</code>?</p> http://stackoverflow.com/questions/1886741/styling-an-air-application-background-image 0 styling an air application - background image krike 2009-12-11T09:02:48Z 2009-12-11T23:07:21Z <p>So I'm trying to give my air application a custom style, I've set the showFlexChrome to false and that's ok it works. now I would like to use an image window I designed in photoshop as the background (because now there is no background in the application).</p> <p>I did the following but it doesn't work</p> <pre><code>&lt;mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" xmlns:views="be.KHM.ProjectManager.models.views.*" width="850" height="500" currentState="index" creationComplete="init()" showFlexChrome="false" horizontalScrollPolicy="off" verticalScrollPolicy="off" backgroundColor="white" &gt; &lt; mx:Style&gt; WindowedApplication { backgroundColor: white; backgroundImage: "be/KHM/ProjectManager/assets/mysimpleproject_interface.jpg"; } &lt;/ mx: Style&gt; </code></pre> <p>The path is correct and I don't receive any errors but the background of my air app is still transparent. I tried to put a canvas around everything between my windowedapplication and give that a background image, but because I work with states it will give me the error that the states cannot be initiated within a canvas or something like that.</p> http://stackoverflow.com/questions/1889569/wpf-catch-a-clr-event-in-a-style-template 0 WPF - Catch a CLR event in A Style template Vaccano 2009-12-11T17:25:13Z 2009-12-11T19:25:26Z <p>I have a style for a ListBox. In the listbox style I have a style for the ListBoxItems. All of this is in the section.</p> <p>I want to catch the IsEnabledChanged event for the Listbox Items (see <a href="http://stackoverflow.com/questions/1889108/wpf-datatrigger-setting-listboxitem-isselected">this question</a> for why). I tried setting up an EventSetter, but it can't see the event because it is not a "routed event".</p> <p>How can I attach an event to this templated item? (Remember it is not attached to a specific Listbox per-se. It is a style in </p> <p>Here is some sample code to show what I am talking about.</p> <pre><code>&lt;Style x:Key="CheckBoxListStyle" TargetType="ListBox"&gt; &lt;Style.Resources&gt; &lt;Style TargetType="ListBoxItem"&gt; &lt;EventSetter Event="IsEnabledChanged" Handler="OnEnabledChanged"\&gt; .... ^ | This is not allowed ------ </code></pre> <p>It can't find this event. Trying to get more specific (ListBoxItem.IsEnabledChanged) does not help.</p> <p>Edit: I am not set on doing this in the XAML. If there is some other way to do this via the code behind that would be just as good. I just don't know how to get access to the resources templates from code behind.</p> http://stackoverflow.com/questions/1886864/underline-text-in-label-which-is-in-a-datatemplate 0 Underline Text in Label which is in a DataTemplate martin 2009-12-11T09:29:46Z 2009-12-11T11:56:38Z <p>Hello,</p> <p>i have a ListView which contains objects bound from an collection. The representation of the objects i have set with data-template. Now i want to do the following. There are two TextBlocks in my DataTemplate:</p> <pre><code>&lt;DataTemplate&gt; &lt;StackPanel&gt; &lt;TextBlock Text="{Binding Name}"&gt;&lt;/TextBlock&gt; &lt;TextBlock Text="{Binding Path}"&gt;&lt;/TextBlock&gt; &lt;/StackPanel&gt; &lt;/DataTemplate&gt; </code></pre> <p>I already have specified an ItemContainerStyle which I use to realize a hover-effect.</p> <pre><code>&lt;Style TargetType="ListViewItem" x:Key="ContainerStyle"&gt; &lt;Style.Triggers&gt; &lt;EventTrigger RoutedEvent="Mouse.MouseEnter"&gt; ... and so on </code></pre> <p>My aim is to underline the TextBlock which contains the Name, when user moves mouse over the ListViewItem. The Path shouldn't be underlined. How can this be realized? How can an element in DataTemplate can be accessed for each ListViewItem?</p> <p>Greetings, Martin</p> http://stackoverflow.com/questions/1886654/android-how-do-you-mix-and-match-colors-styles-and-sizes-in-a-single-view 0 Android: how do you mix and match colors, styles, and sizes in a single view? Artem Russakovskii 2009-12-11T08:39:09Z 2009-12-11T08:48:40Z <p>Is it possible to style a single, say, TextView in Android with multiple alternating styles, colors, and sizes? Think inline HTML or CSS but in the Android world.</p> <p>As an extreme, to demonstrate the point, let's say I wanted to have a word "CIRCUS" with each letter a being different color. Do I have to create 6 TextViews for this or can this be done in one?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1753808/should-commit-messages-be-written-in-present-or-past-tense 5 Should commit messages be written in present or past tense? unknown (yahoo) 2009-11-18T05:21:47Z 2009-12-10T23:27:21Z <p>So which is it that you think is better and more intuitive?</p> <pre><code>Fixed the XXX bug in YYY Fix the XXX bug in YYY Fixes the XXX bug in YYY Fixing the XXX bug in YYY </code></pre> <p>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 languages, but rather think of it as something that should/can be applied to any tools and programming languages.</p> http://stackoverflow.com/questions/1880088/flash-cs4-embedded-font-style-issue 0 Flash CS4 embedded font style issue Bhavesh.Bagadiya 2009-12-10T10:30:44Z 2009-12-10T11:38:59Z <p>Hi der!</p> <p>I'm using some fonts embedded in SWF in a program I'm developing. I need to use some specific font style like '37 Thin Condensed' and '26 Ultra Light Italic' etc... how can I specify these style when using fonts? I want to set style using AS3 code...</p> http://stackoverflow.com/questions/1878046/how-can-i-change-an-elements-style-at-runtime 0 How can I change an elements style at runtime? Brett Ryan 2009-12-10T01:09:27Z 2009-12-10T05:15:00Z <p>I have an element and multiple styles, how do I switch between the styles at runtime either programatically or through XAML binding.</p> <pre><code>&lt;Rectangle x:Name="fixtureControl" Style="{DynamicResource FixtureStyle_Fast}"&gt; &lt;!-- In the style resources. --&gt; &lt;Style x:Key="FixtureStyle_Fast" TargetType="{x:Type Shape}"&gt; &lt;Setter Property="Stroke" Value="Black"/&gt; &lt;Setter Property="StrokeThickness" Value="20"/&gt; &lt;/Style&gt; &lt;Style x:Key="FixtureStyle_Good" TargetType="{x:Type Shape}"&gt; &lt;Setter Property="Effect"&gt; &lt;Setter.Value&gt; &lt;DropShadowEffect Opacity=".9" Direction="-90" RenderingBias="Performance" BlurRadius="50" ShadowDepth="10" /&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; &lt;Style x:Key="FixtureStyle_Best" TargetType="{x:Type Shape}"&gt; &lt;Setter Property="Effect"&gt; &lt;Setter.Value&gt; &lt;DropShadowEffect Opacity=".9" Direction="-90" RenderingBias="Quality" BlurRadius="50" ShadowDepth="10" /&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; </code></pre> <p>Then I have some radio buttons that handle changing the style</p> <pre><code>private void RadioButton_Click(object sender, RoutedEventArgs e) { if (e.Source == rdoQualityBest) { fixtureControl.Style = FindResource("FixtureStyle_Best") as Style; } else if (e.Source == rdoQualityGood) { fixtureControl.Style = FindResource("FixtureStyle_Good") as Style; } else { fixtureControl.Style = FindResource("FixtureStyle_Fast") as Style; } } </code></pre> <p>However this applies the style to the element, not replacing it, so if I apply Fast then Quality, I get both the border and the drop-shadow.</p> http://stackoverflow.com/questions/1875403/jquery-how-to-get-the-style-display-attribute-none-block 0 Jquery - How to get the style display attribute "none / block" Murtaza RC 2009-12-09T17:14:30Z 2009-12-09T17:16:36Z <p>Is there a way to get the style: display attribute which would have either none or block?</p> <p>DIV :</p> <pre><code>&lt;div id="ctl00_MainContentAreaPlaceHolder_cellPhone_input_msg_container" class="Error cellphone" style="display: block;"&gt; &lt;p class="cellphone" style="display: block;"&gt;Text&lt;/p&gt; &lt;/div&gt; </code></pre> <p>I know that there is a way to find out if the DIV is hidden or not but in my case this div is dynamically injected so it always shows up as visible false thus I cannot use that :</p> <pre><code>$j('.Error .cellphone').is(':hidden') </code></pre> <p>I am aable to get the result "display:block" using :</p> <pre><code>$j('div.contextualError.ckgcellphone').attr('style') </code></pre> <p>Is there a way to get just the value "block" or "none" or if theres a better/more efficient way to do this?</p> http://stackoverflow.com/questions/1873946/styling-my-listbox-in-xaml 0 Styling my listbox in xaml bomortensen 2009-12-09T13:37:37Z 2009-12-09T15:33:37Z <p>Hi all xaml-geeks ;)</p> <p>I've just been fooling around with a ListBox control that I want to style a certain way. For now it looks just like I want it to with rounded corners and no padding. However, the rounded corners seems to cause a problem with the items in the ListBox.</p> <p>A screenshot so you can see what I mean: <img src="http://www.bo-mortensen.dk/listbox.JPG" alt="alt text"></p> <p>The thing is, that the first and the last item in the listbox needs to have it's corners rounded aswell. So the first item in the listbox needs to have it's upper left and right corners rounded while the bottom corners needs to be rectangular. </p> <p>Is it possible in some way, to make three different styles and have the first, middle and last items use their own style? So i.e:</p> <ul> <li>First item uses style: ListBoxFirstItem</li> <li>Middle items uses style: ListBoxMiddleItems</li> <li>Last item uses style: ListBoxLastItem</li> </ul> <p>Also, as a side question, how am I able to style the selected item and mouse over? If i'd like to get rid of the blue rectangle that's standard.</p> <p>Hope you understand my question(s), if not - just let me know and I'll see if I can elaborate :)</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/549962/instance-variable-method-argument-naming-in-objective-c 2 instance variable/ method argument naming in Objective C Phil Nash 2009-02-14T23:14:22Z 2009-12-09T15:02:42Z <p>What conventions are people here following for naming of instance variables and method arguments - particularly when method arguments are used to set ivars (instance variables)?</p> <p>In C++ I used to use the <code>m_</code> prefix for ivars a lot. In C# I followed the convention of disambiguating purely by use of <code>this.</code> for ivars. I've since adopted the equivalent in C++ too (<code>this-></code>). </p> <p>In Objective C I've tried a few things but none have really seemed satisfactory.</p> <p>Unless someone suggests something really nice I am resigned to the fact that I'll have to compromise (but please, don't make me use the <code>the</code> prefix for args!), so I'm interested to hear what the majority say - especially from those who have been using ObjC for a while.</p> <p>I did some due diligence before posting this and a couple of good resources I found where:</p> <ul> <li><a href="http://cocoadevcentral.com/articles/000083.php" rel="nofollow">This style guide</a> (briefly mentions my subject)</li> <li><a href="http://www.cocoabuilder.com/archive/message/cocoa/2008/4/3/203139" rel="nofollow">This thread</a> (a lot of ex C++ coders in there)</li> </ul> <p>They give me some ideas, but I'm still keen to hear what others are doing.</p> <p>[edit] Just to clarify: It's specifically how you distinguish ivars from method args that I'm looking for - whether that's through prefixes or some other technique.</p> <p>[edit 2] Thanks for all the responses and discussion points. I'm not closing this, but will just say that, as I indicated in my comments to the accepted answer, I've gone with the convention of prefixing init args with <code>the</code> (and setter args with <code>new</code>, which I was doing anyway). This seems to be the best balance of forces - even if I'm not keen on the aesthetic myself.</p> http://stackoverflow.com/questions/1873522/multiple-styles-wpf-from-which-user-can-choose 1 multiple styles wpf from which user can choose MichaelD 2009-12-09T12:13:22Z 2009-12-09T13:56:02Z <p>I want let the user choose what style my application has.Small example would be 2 buttons, if user presses button 1 then the background color turns red, if the user presses button 2 then the backgroundcolor turns green. </p> <p>How do i do that? do i use multiple resource dictionaries? and apply them when the button is pressed? Whats the most common way of doing that?</p> http://stackoverflow.com/questions/1484017/silverlight-changing-styles-based-on-an-objects-property-value-ie-datatrigger 3 Silverlight changing styles based on an objects property value (ie DataTrigger) Suiva 2009-09-27T17:29:27Z 2009-12-08T12:57:45Z <p>Hi,</p> <p>Does anyone have a successful workaround for changing a style in silverlight based on a property of the underlying data object, in that when the value changes so does the style. I used WPF briefly and it obviously has the DataTrigger which seems to cover this but it is missing in Silverlight.</p> <p>I found this: <a href="http://blois.us/blog/2009/04/datatrigger-bindings-on-non.html" rel="nofollow">http://blois.us/blog/2009/04/datatrigger-bindings-on-non.html</a></p> <p>But it doesn't seem to apply to styling..</p> <p>Thanks for your time</p> http://stackoverflow.com/questions/1096182/change-style-of-scrollbar-in-dropdownlist-in-asp-net 0 Change Style of Scrollbar in DropDownlist in asp.net Nikunj 2009-07-08T05:06:39Z 2009-12-08T10:36:01Z <p>Hello Friends,</p> <p>Can anyone tell me how can I change the default style of DropDownlist scrollbar</p> <p>I use below style property to change scrollbar style but its not working for dropdownlist</p> <pre><code>.scrollbarstyle { scrollbar-face-color: #BAC8D5; scrollbar-highlight-color: #DCF5F8; scrollbar-shadow-color: #DEE3E7; scrollbar-3dlight-color: #879BA9; scrollbar-arrow-color: #FFFFFF; scrollbar-track-color: #E0EAEF; scrollbar-darkshadow-color: #90ABBE; } </code></pre> <p>Thanking you.</p> http://stackoverflow.com/questions/405967/how-can-you-change-the-highlighted-text-color-for-a-wpf-textbox 5 How can you change the highlighted text color for a WPF TextBox? demwiz 2009-01-02T03:37:26Z 2009-12-07T16:45:34Z <p>The WPF TextBox natively makes use of the System Highlight color for painting the background of selected text. I would like to override this and make it consistent since it varies by OS/user theme.</p> <p>For ListBoxItems, there is a <a href="http://blogs.msdn.com/wpfsdk/archive/2007/08/31/specifying-the-selection-color-content-alignment-and-background-color-for-items-in-a-listbox.aspx" rel="nofollow">neat trick</a> (see below) where you can override the resource key for the HighlightBrushKey to customize the System Highlight color in a focused setting.</p> <pre><code> &lt;Style TargetType="ListBoxItem"&gt; &lt;Style.Resources&gt; &lt;SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="LightGreen"/&gt; &lt;/Style.Resources&gt; &lt;/Style&gt; </code></pre> <p>The same trick does not work for the TextBox unfortunately. Does anyone have any other ideas, besides "override the ControlTemplate"?</p> <p>Thanks for any suggestions!</p> <p><a href="http://blogs.msdn.com/llobo/archive/2009/10/27/new-wpf-features-caretbrush-selectionbrush.aspx" rel="nofollow">NOTE: This behavior appears to be added to WPF 4.</a></p> http://stackoverflow.com/questions/1857454/referencing-a-base-types-control-template-in-xaml 0 Referencing a base types control template in xaml Aran Mulholland 2009-12-07T02:25:20Z 2009-12-07T03:02:53Z <p>I have a control derived from ComboBox, i want to use the ComboBox ControlTemplate, and just set a few values on it in xaml, namely the ItemContainerStyle. The code below doesnt work, the last setter, which im intending to apply the base ComboBox control template to this one, doesnt do anything.</p> <pre><code> &lt;Style TargetType="{x:Type local:EditingFilteringComboBox}" BasedOn="{StaticResource {x:Type ComboBox}}"&gt; &lt;Setter Property="IsEditable" Value="False" /&gt; &lt;Setter Property="DisplayMemberPath" Value="DisplayValue" /&gt; &lt;Setter Property="ItemContainerStyle" Value="{StaticResource editingFilteringComboBoxListBoxItem}" /&gt; &lt;Setter Property="Template" Value="{StaticResource {x:Type ComboBox}}" /&gt; &lt;/Style&gt; </code></pre> <p>I want to derive from combo box but i dont want to include the whole control template for it. I dont even want to touch the control template. I do want to change the ItemContainerStyle, which i could do from code, but much nicer if i dont have to.</p> <p>the other reason why i want this here is because to want access to the internal members of the ComboBox's control template, namely the TextBox and the Popup. Usually i access members like this in the override of OnApplyTemplate.</p> <p>i feel like im travelling the wrong path, enlighten me sensei.</p> http://stackoverflow.com/questions/1856617/change-menu-styling-on-fly-or-pass-a-param-inside-jquery-each-iterator 0 Change Menu Styling on fly or pass a param inside jQuery .each iterator abolotnov 2009-12-06T21:08:27Z 2009-12-06T21:15:20Z <p>I have a bunch of menu links and want to change their style on click - say you click "about" and it becomes bold and red. I select the items and bind click event to them:</p> <pre><code>$("#nav_menu &gt; *").bind("click",function(){doTrigger(this.id);}); </code></pre> <p>this way I pass the ID of the clicked item to <code>doTrigger</code>.</p> <p>Ok. Now in <code>doTrigger</code> I am trying to iterate through the items and change their styles: all to <em>style1</em> and clicked to <em>style2</em> for example. The problem is that:</p> <pre><code>$("#nav_menu &gt; *").each(function(){;}); </code></pre> <p>will not let me pass the id of the clicked item.</p> <p>I think there should be a less complicated way of getting what I need. Besides, I think I am lost, too.</p> http://stackoverflow.com/questions/1848445/duplicating-an-element-and-its-style-with-javascript 0 Duplicating an element (and its style) with JavaScript acebal 2009-12-04T17:26:50Z 2009-12-06T21:14:32Z <p>Hello,</p> <p>For a JavaScript library I'm implementing, I need <strong>to clone an element which has exactly the same applied style than the original</strong> one. Although I've gained a rather decent knowledge of JavaScript, as a programming language, while developing it, I'm still a DOM scripting newbie, so any advice about how this can be achieved would be extremely helpful (and it has to be done without using any other JavaScript library).</p> <p>Thank you very much in advance.</p> <p>Edit: <code>cloneNode(true)</code> does not clone the computed style of the element. Let's say you have the following HTML:</p> <pre><code>&lt;body&gt; &lt;p id="origin"&gt;This is the first paragraph.&lt;/p&gt; &lt;div id="destination"&gt; &lt;p&gt;The cloned paragraph is below:&lt;/p&gt; &lt;/div&gt; &lt;/body&gt; </code></pre> <p>And some style like:</p> <pre><code>body &gt; p { font-size: 1.4em; font-family: Georgia; padding: 2em; background: rgb(165, 177, 33); color: rgb(66, 52, 49); } </code></pre> <p>If you just clone the element, using something like:</p> <pre><code>var element = document.getElementById('origin'); var copy = element.cloneNode(true); var destination = document.getElementById('destination'); destination.appendChild(copy); </code></pre> <p>Styles are not cloned. </p> http://stackoverflow.com/questions/1853207/wpf-can-i-put-a-colour-animation-in-a-style 0 WPF: Can I put a colour animation in a style? Anthony 2009-12-05T19:38:10Z 2009-12-05T23:02:32Z <p>This is a simple WPF window in XAML:</p> <pre><code>&lt;Window x:Class="AnimateTest.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Window1" Height="300" Width="300" x:Name="MainWindow" Style="{StaticResource TestStyle}"&gt; &lt;Grid&gt; &lt;/Grid&gt; &lt;/Window&gt; </code></pre> <p>Note that is has a style. What can we do with the style? This is the <code>App.xaml</code> that gives it a light blue background</p> <pre><code>&lt;Application x:Class="AnimateTest.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" StartupUri="Window1.xaml"&gt; &lt;Application.Resources&gt; &lt;Style x:Key="TestStyle"&gt; &lt;Setter Property="Window.Background" Value="AliceBlue" /&gt; &lt;/Style&gt; &lt;/Application.Resources&gt; &lt;/Application&gt; </code></pre> <p>To get more complex, this is the background that gives it a blue gradient background:</p> <pre><code>&lt;Application x:Class="AnimateTest.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" StartupUri="Window1.xaml"&gt; &lt;Application.Resources&gt; &lt;LinearGradientBrush x:Key="BackgroundBrush" EndPoint="0.6,0.6" StartPoint="0,0"&gt; &lt;GradientStop Color="#FFFFFFFF" Offset="0" /&gt; &lt;GradientStop Color="#FFD0D0F0" Offset="1" /&gt; &lt;/LinearGradientBrush&gt; &lt;Style x:Key="TestStyle"&gt; &lt;Setter Property="Window.Background" Value="{StaticResource BackgroundBrush}" /&gt; &lt;/Style&gt; &lt;/Application.Resources&gt; &lt;/Application&gt; </code></pre> <p>The last step that I want to do is to animate this colour. I have </p> <pre><code>&lt;Application x:Class="AnimateTest.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" StartupUri="Window1.xaml"&gt; &lt;Application.Resources&gt; &lt;LinearGradientBrush x:Key="BackgroundBrush" EndPoint="0.6,0.6" StartPoint="0,0"&gt; &lt;GradientStop Color="#FFFFFFFF" Offset="0" /&gt; &lt;GradientStop Color="#FFD0D0F0" Offset="1" /&gt; &lt;/LinearGradientBrush&gt; &lt;Style x:Key="TestStyle"&gt; &lt;Setter Property="Window.Background" Value="{StaticResource BackgroundBrush}" /&gt; &lt;/Style&gt; &lt;Storyboard x:Key="ThemeAnimation"&gt; &lt;ColorAnimationUsingKeyFrames Storyboard.TargetName="(UIElement)" Storyboard.TargetProperty="Background.GradientStops[1].Color" Duration="0:0:10" RepeatBehavior="Forever"&gt; &lt;ColorAnimationUsingKeyFrames.KeyFrames&gt; &lt;LinearColorKeyFrame Value="#FFD0D0F0" KeyTime="0:0:0" /&gt; &lt;LinearColorKeyFrame Value="#FFF0D0F0" KeyTime="0:0:10" /&gt; &lt;/ColorAnimationUsingKeyFrames.KeyFrames&gt; &lt;/ColorAnimationUsingKeyFrames&gt; &lt;/Storyboard&gt; &lt;/Application.Resources&gt; &lt;/Application&gt; </code></pre> <p>So I can do this in the Window constructor:</p> <pre><code> object themeAnimationObject = this.FindResource("ThemeAnimation"); Storyboard themeAnimation = themeAnimationObject as Storyboard; themeAnimation.Begin(this); </code></pre> <p>But I get an exception:</p> <pre><code>(UIElement)' name cannot be found in the name scope of 'AnimateTest.Window1' </code></pre> <p>I have tried various combinations of values for the animation's <code>Storyboard.TargetName</code> and <code>Storyboard.TargetProperty</code> properties, but they didn't work, I'm just groping in the dark. The best outcome would be able to apply the style, animations and all to any window without any, or with minimal c# code </p> <p>Update: Here's the working App.xaml based on itowlson's answer:</p> <pre><code>&lt;Application x:Class="AnimateTest.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" StartupUri="Window1.xaml"&gt; &lt;Application.Resources&gt; &lt;LinearGradientBrush x:Key="BackgroundBrush" EndPoint="0.6,0.6" StartPoint="0,0"&gt; &lt;GradientStop Color="#FFFFFFFF" Offset="0" /&gt; &lt;GradientStop Color="#FFD0D0F0" Offset="1" /&gt; &lt;/LinearGradientBrush&gt; &lt;Style x:Key="TestStyle" TargetType="FrameworkElement"&gt; &lt;Setter Property="Window.Background" Value="{StaticResource BackgroundBrush}" /&gt; &lt;Style.Triggers&gt; &lt;EventTrigger RoutedEvent="Loaded"&gt; &lt;BeginStoryboard&gt; &lt;Storyboard&gt; &lt;ColorAnimationUsingKeyFrames Storyboard.TargetProperty="Background.GradientStops[1].Color" Duration="0:0:10" RepeatBehavior="Forever" AutoReverse="True"&gt; &lt;ColorAnimationUsingKeyFrames.KeyFrames&gt; &lt;LinearColorKeyFrame Value="#FFD0D0F0" KeyTime="0:0:0" /&gt; &lt;LinearColorKeyFrame Value="#FFF0D0F0" KeyTime="0:0:10" /&gt; &lt;/ColorAnimationUsingKeyFrames.KeyFrames&gt; &lt;/ColorAnimationUsingKeyFrames&gt; &lt;/Storyboard&gt; &lt;/BeginStoryboard&gt; &lt;/EventTrigger&gt; &lt;/Style.Triggers&gt; &lt;/Style&gt; &lt;/Application.Resources&gt; &lt;/Application&gt; </code></pre> http://stackoverflow.com/questions/1838691/how-to-display-percent-values-using-contentstringformat 0 How to display percent-values using ContentStringFormat? Joerg Reinhardt 2009-12-03T09:19:02Z 2009-12-05T11:18:25Z <p>Greetings to the enlightened ones!</p> <p>I'm playing on this for several hours now, but wasn't successful (perhaps because I'm quite new to WPF):</p> <p>I have a DataGrid whose DataContext is bound to a DataTable. The DataGrid is of fixed size and its purpose is to hold a value table y(x) (i.e. the headers show the x-values and the corresponding y-values are pasted from the clipboard and shown in the first DataGridRow). So far so good. The values are pasted (assigned as strings to dataTable.rows[0][i] where i=0...n) perfectly and displayed well.</p> <p>But the numbers displayed are percent-values and I want them to be displayed as such:</p> <p>"0.18" shall become "18 %"</p> <p>So, I decided to cope with this using a style which is to be applied to all DataGridCell objects:</p> <pre><code>&lt;Style TargetType="{x:Type Controls:DataGridCell}"&gt; &lt;Style.Setters&gt; &lt;Setter Property="ContentStringFormat" Value="{}{0:P}"/&gt; &lt;Setter Property="Foreground" Value="DarkGray"/&gt; &lt;Setter Property="Background" Value="Yellow"/&gt; &lt;/Style.Setters&gt; &lt;/Style&gt; </code></pre> <p>Then the background and foreground colors are adopted fine, but the numbers are still displayed as decimals (i.e. "0.18" still reads "0.18".</p> <p>How can I fix this?</p> <p>Thanks in advance Joerg</p>