Tagged Questions

12
votes
8answers
626 views

.toArray(new MyClass[0]) or .toArray(new MyClass[myList.size()]) ?

Assuming I have an ArrayList ArrayList<MyClass> myList; And I want to call toArray, is there a performance reason to use MyClass[] arr = myList.toArray(new MyClass[myList.size()]); over …
0
votes
0answers
18 views

How to display percent-values using ContentStringFormat?

Greetings to the enlightened ones! I'm playing on this for several hours now, but wasn't successful (perhaps because I'm quite new to WPF): I have a DataGrid whose DataContext is bound to a …
0
votes
1answer
8 views

How can I stop a TreeViewItem from fireing the Selected event for itself, and its parent?

I have a TreeViewItem that when Selected, calles a method. However, I am finding that when the Selected event is called, the Selected event for the parent TreeViewItem also seems to be called. I …
1
vote
7answers
188 views

‘else’ directly after end of if block [closed]

I'm interested in where this variation of the pure block style stems from. When I say putting the else directly after the end of the if block I mean... if ( foo ) { DoThis(); DoThat(); } else { …
1
vote
5answers
1k views

WPF - Change a button’s content in a style?

I'm trying to do something similar to this: <Window x:Class="WpfApplication1.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" …
0
votes
2answers
21 views

WPF- Catch the clicking of a button that was added to a style (ListBoxItem)

I have added a button to a template for a ListBoxItem. I want to know how to catch the click for the button (not selecting the ListboxItem). The button clicks just fine in the UI, but I can't seem …
0
votes
1answer
17 views

style air application

for school we are making an air application and we've run into some questions, things we don't know how to do. Where can we find information on how to style our air application, we would like to get …
0
votes
1answer
9 views
+100

Hide controls in FlowDocumentReader

Is it possible to hide controls at the bottom like zoom slider, page navigation etc in FlowDocumentReader? It seems that only search can be hidden through the IsFindEnabled property.
0
votes
2answers
41 views

How to style uitextview to like Rounded Rect text field ?

Hello all, I am using a text view as a comment composer . In the properties inspector I can't find anything like border style property so that I can make it to rounded rect something like …
0
votes
0answers
10 views

How to access a component in a style in wpf?

I rolled my own tab control with left and right buttons that, when clicked, scroll the entire tab control one way or the other. I have functionality that I can't exactly do in XAML, so I need access …
0
votes
0answers
7 views

Flex Builder: Style is displayed in design perspective, but not in browser when I compile and run it

Hi, I am trying to use image as a background of my application, I have not success :( Here is the code which shows how I do it: <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" …
0
votes
1answer
25 views

Documentation style

I'm a PHP web developer, who is looking for a well proven method for writing a good documentation (aka docblock). There are several documentation styles, for instance: The descriptive but not …
0
votes
2answers
32 views

How to display static text and dynamic text(generated by variables) differently in PHP?

A HTML file is generated by a PHP file. Generally speaking, what a user can see from a HTML file can be divided into two parts, one part is static; another part is dynamic, this part is represented by …
0
votes
1answer
10 views

Strange anonymus style behavior

In my WPF application I have resource dictionary where anonymus style for Hyperlink and anonymus data template for some my type are specified: <Style TargetType="{x:Type Hyperlink}"> …
3
votes
2answers
1k views

Load WPF styles (static resources) from an external assembly

I have a few WPF applications and I want all my styles to be in a shared assembly instead of declaring them in each application separately. I am looking for a way so I don't have to change all my …

1 2 3 4 5 24 next
15 30 50 per page