Click here to Skip to main content
15,922,533 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: How to draw an vector on top of an Image? Pin
chaiguy133718-Sep-08 19:05
chaiguy133718-Sep-08 19:05 
QuestionNewbie Needs Help with using Blend in my VS 2005 applications Pin
GDMFSOB18-Sep-08 3:45
GDMFSOB18-Sep-08 3:45 
AnswerRe: Newbie Needs Help with using Blend in my VS 2005 applications Pin
Michael Sync18-Oct-08 21:57
Michael Sync18-Oct-08 21:57 
QuestionHow can I access to an element of App with Timer in WPF ? Pin
Mohammad Dayyan18-Sep-08 3:00
Mohammad Dayyan18-Sep-08 3:00 
AnswerRe: How can I access to an element of App with Timer in WPF ? Pin
Insincere Dave18-Sep-08 6:59
Insincere Dave18-Sep-08 6:59 
GeneralRe: How can I access to an element of App with Timer in WPF ? Pin
Mohammad Dayyan18-Sep-08 9:09
Mohammad Dayyan18-Sep-08 9:09 
QuestionHow to show multiple attribute values in tree view from XML file in WPF? Pin
sachinss198617-Sep-08 23:29
sachinss198617-Sep-08 23:29 
AnswerRe: How to show multiple attribute values in tree view from XML file in WPF? Pin
Pete O'Hanlon18-Sep-08 3:50
mvePete O'Hanlon18-Sep-08 3:50 
You could always code up something like this:
<Window x:Class="WpfTreeview.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">
  <Window.Resources>
    <DataTemplate x:Key="NodeTemplate">
      <StackPanel Orientation="Horizontal">
        <TextBlock Text="{Binding XPath=@name}" />
        <TextBlock Text=" : " />
        <TextBlock Text="{Binding XPath=@type}" />
      </StackPanel>
    </DataTemplate>
  </Window.Resources>
  <Grid>
    <TreeView Name="treeView1" ItemTemplate="{StaticResource NodeTemplate}" />
  </Grid>
</Window>


Deja View - the feeling that you've seen this post before.

My blog | My articles



QuestionError:Assembly '' was not found in Custom Control(WPF) Pin
bruze17-Sep-08 3:54
bruze17-Sep-08 3:54 
AnswerRe: Error:Assembly '' was not found in Custom Control(WPF) Pin
Pete O'Hanlon17-Sep-08 4:36
mvePete O'Hanlon17-Sep-08 4:36 
QuestionIs animated masking possible in WPF? Pin
azwethinkheiz17-Sep-08 0:48
azwethinkheiz17-Sep-08 0:48 
AnswerRe: Is animated masking possible in WPF? Pin
Insincere Dave18-Sep-08 7:05
Insincere Dave18-Sep-08 7:05 
GeneralRe: Is animated masking possible in WPF? Pin
azwethinkheiz18-Sep-08 22:30
azwethinkheiz18-Sep-08 22:30 
QuestionMatrixAnimationUsingPath Pin
rednaw15-Sep-08 11:10
rednaw15-Sep-08 11:10 
QuestionBlend 2, 2.5 etc Pin
stevio15-Sep-08 3:50
stevio15-Sep-08 3:50 
AnswerRe: Blend 2, 2.5 etc Pin
Jared Bienz [MSFT]17-Sep-08 6:13
Jared Bienz [MSFT]17-Sep-08 6:13 
GeneralRe: Blend 2, 2.5 etc Pin
stevio17-Sep-08 7:09
stevio17-Sep-08 7:09 
GeneralRe: Blend 2, 2.5 etc Pin
Jared Bienz [MSFT]17-Sep-08 8:07
Jared Bienz [MSFT]17-Sep-08 8:07 
GeneralRe: Blend 2, 2.5 etc Pin
stevio17-Sep-08 8:17
stevio17-Sep-08 8:17 
QuestionWPF: Access from a class to the Main-Form Pin
der_tankwart14-Sep-08 10:39
der_tankwart14-Sep-08 10:39 
AnswerRe: WPF: Access from a class to the Main-Form Pin
Pete O'Hanlon14-Sep-08 10:50
mvePete O'Hanlon14-Sep-08 10:50 
QuestionConfigure WCF endpoints for Network and Internet Pin
Kyon8614-Sep-08 3:55
Kyon8614-Sep-08 3:55 
QuestionWindows Media Player style buttons in WPF Pin
M Harris13-Sep-08 22:13
M Harris13-Sep-08 22:13 
QuestionBarcode Tracking WPF 3D Pin
Stevie13-Sep-08 1:11
Stevie13-Sep-08 1:11 
GeneralRe: Barcode Tracking WPF 3D Pin
chaiguy133713-Sep-08 7:44
chaiguy133713-Sep-08 7:44 

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.