Click here to Skip to main content
15,912,069 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: Deep Zoom - Generate on Demand/Dynamically Pin
ColinM12328-Jan-09 16:59
ColinM12328-Jan-09 16:59 
AnswerRe: Deep Zoom - Generate on Demand/Dynamically Pin
Mark Salsbery29-Jan-09 5:39
Mark Salsbery29-Jan-09 5:39 
QuestionAdding dynamically new lines and columns to a grid ? Pin
WolveFred228-Jan-09 4:20
WolveFred228-Jan-09 4:20 
AnswerRe: Adding dynamically new lines and columns to a grid ? Pin
ColinM12328-Jan-09 13:45
ColinM12328-Jan-09 13:45 
GeneralRe: Adding dynamically new lines and columns to a grid ? Pin
WolveFred229-Jan-09 2:41
WolveFred229-Jan-09 2:41 
GeneralRe: Adding dynamically new lines and columns to a grid ? [modified] Pin
Mark Salsbery29-Jan-09 5:46
Mark Salsbery29-Jan-09 5:46 
GeneralRe: Adding dynamically new lines and columns to a grid ? Pin
WolveFred229-Jan-09 7:37
WolveFred229-Jan-09 7:37 
GeneralRe: Adding dynamically new lines and columns to a grid ? Pin
Mark Salsbery29-Jan-09 7:52
Mark Salsbery29-Jan-09 7:52 
GeneralRe: Adding dynamically new lines and columns to a grid ? Pin
WolveFred229-Jan-09 8:04
WolveFred229-Jan-09 8:04 
GeneralRe: Adding dynamically new lines and columns to a grid ? Pin
Mark Salsbery29-Jan-09 9:15
Mark Salsbery29-Jan-09 9:15 
GeneralRe: Adding dynamically new lines and columns to a grid ? [modified] Pin
WolveFred22-Feb-09 4:37
WolveFred22-Feb-09 4:37 
GeneralRe: Adding dynamically new lines and columns to a grid ? Pin
Mark Salsbery2-Feb-09 5:55
Mark Salsbery2-Feb-09 5:55 
GeneralRe: Adding dynamically new lines and columns to a grid ? Pin
WolveFred23-Feb-09 3:31
WolveFred23-Feb-09 3:31 
QuestionFit to Screen in WPF [modified] Pin
AnkitSingh28-Jan-09 4:00
AnkitSingh28-Jan-09 4:00 
AnswerRe: Fit to Screen in WPF Pin
BlitzPackage28-Jan-09 13:50
BlitzPackage28-Jan-09 13:50 
AnswerRe: Fit to Screen in WPF Pin
raihansazal31-Jan-09 20:18
raihansazal31-Jan-09 20:18 
GeneralRe: Fit to Screen in WPF Pin
AnkitSingh1-Feb-09 5:11
AnkitSingh1-Feb-09 5:11 
QuestionClickonce Deployment Pin
VCsamir27-Jan-09 19:43
VCsamir27-Jan-09 19:43 
QuestionHow to play mp3s located in web app? Pin
threemp327-Jan-09 13:20
threemp327-Jan-09 13:20 
AnswerRe: How to play mp3s located in web app? Pin
Michael Sync29-Jan-09 2:11
Michael Sync29-Jan-09 2:11 
QuestionA WPF 'ah-ha' moment for you. Pin
Ray Cassick27-Jan-09 10:08
Ray Cassick27-Jan-09 10:08 
AnswerRe: A WPF 'ah-ha' moment for you. Pin
Pete O'Hanlon27-Jan-09 10:11
mvePete O'Hanlon27-Jan-09 10:11 
AnswerRe: A WPF 'ah-ha' moment for you. Pin
ColinM12327-Jan-09 11:07
ColinM12327-Jan-09 11:07 
Not sure ALL the pistons are firing yet!

I liked this article on how a humble listbox can be completely changed in appearance.
http://bea.stollnitz.com/blog/?p=40[^]
Then going back a few weeks later and understanding (most of) the code this time.

Also as Pete said lots of good WPF authors here on CP.
Same thing, might not quite understand them, but let them sink in and they make more sense on rereading.

Another thing was understanding that XAML is not some mysterious language but you can do things like just make an arraylist with integers and bind it to a listbox, very easily when you know how.
The Pro WPF book has a nice chapter on this at the start. (You might be able to find this on google books, if you don't have a copy)

<window.resources>
<sys2:arraylist x:key="myArrayList" xmlns:x="#unknown" xmlns:sys2="#unknown">
    <sys:int32 xmlns:sys="#unknown">1
    <sys:int32>2
    <sys:int32>3
</sys:int32></sys:int32></sys:int32></sys2:arraylist>
</window.resources>

<listbox itemssource="{StaticResource myArrayList" />


Then once you learn all that WPF stuff, you goto Silverlight and find out half of the good stuff is missing. *sob*


AnswerRe: A WPF 'ah-ha' moment for you. Pin
Mark Salsbery27-Jan-09 11:37
Mark Salsbery27-Jan-09 11:37 
AnswerRe: A WPF 'ah-ha' moment for you. Pin
ColinM12327-Jan-09 11:42
ColinM12327-Jan-09 11:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.