Click here to Skip to main content
15,913,685 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: Convert a glyph from a font to a WPF shape. Pin
Lutosław22-Jun-09 14:09
Lutosław22-Jun-09 14:09 
GeneralRe: Convert a glyph from a font to a WPF shape. Pin
Christian Graus22-Jun-09 15:13
protectorChristian Graus22-Jun-09 15:13 
AnswerRe: Convert a glyph from a font to a WPF shape. Pin
Pete O'Hanlon22-Jun-09 11:24
mvePete O'Hanlon22-Jun-09 11:24 
GeneralRe: Convert a glyph from a font to a WPF shape. Pin
Lutosław22-Jun-09 13:01
Lutosław22-Jun-09 13:01 
GeneralRe: Convert a glyph from a font to a WPF shape. Pin
Pete O'Hanlon22-Jun-09 22:19
mvePete O'Hanlon22-Jun-09 22:19 
GeneralRe: Convert a glyph from a font to a WPF shape. Pin
Lutosław24-Jun-09 4:35
Lutosław24-Jun-09 4:35 
GeneralRe: Convert a glyph from a font to a WPF shape. Pin
Pete O'Hanlon24-Jun-09 4:38
mvePete O'Hanlon24-Jun-09 4:38 
QuestionVertical/Horizontal scrollbar for silverlight page Pin
Sunil P V22-Jun-09 6:06
Sunil P V22-Jun-09 6:06 
QuestionRe: Vertical/Horizontal scrollbar for silverlight page Pin
Mark Salsbery22-Jun-09 8:37
Mark Salsbery22-Jun-09 8:37 
AnswerRe: Vertical/Horizontal scrollbar for silverlight page Pin
Sunil P V22-Jun-09 19:52
Sunil P V22-Jun-09 19:52 
GeneralRe: Vertical/Horizontal scrollbar for silverlight page Pin
Mark Salsbery22-Jun-09 20:05
Mark Salsbery22-Jun-09 20:05 
GeneralRe: Vertical/Horizontal scrollbar for silverlight page Pin
Sunil P V22-Jun-09 22:27
Sunil P V22-Jun-09 22:27 
GeneralRe: Vertical/Horizontal scrollbar for silverlight page Pin
Sunil P V30-Jun-09 22:16
Sunil P V30-Jun-09 22:16 
QuestionCatastrophic failure while running thread with BackgroundWorker Pin
salon22-Jun-09 2:31
salon22-Jun-09 2:31 
GeneralRe: Catastrophic failure while running thread with BackgroundWorker Pin
Viral Upadhyay22-Jun-09 3:03
Viral Upadhyay22-Jun-09 3:03 
GeneralRe: Catastrophic failure while running thread with BackgroundWorker Pin
salon22-Jun-09 3:14
salon22-Jun-09 3:14 
GeneralRe: Catastrophic failure while running thread with BackgroundWorker Pin
Viral Upadhyay22-Jun-09 4:31
Viral Upadhyay22-Jun-09 4:31 
GeneralRe: Catastrophic failure while running thread with BackgroundWorker Pin
salon22-Jun-09 19:11
salon22-Jun-09 19:11 
GeneralRe: Catastrophic failure while running thread with BackgroundWorker Pin
salon22-Jun-09 21:16
salon22-Jun-09 21:16 
QuestionListBox Binding From Within A User Control Pin
BlitzPackage21-Jun-09 14:56
BlitzPackage21-Jun-09 14:56 
AnswerRe: ListBox Binding From Within A User Control Pin
Mark Salsbery21-Jun-09 16:38
Mark Salsbery21-Jun-09 16:38 
On the ListBox you have
ItemsSource="{Binding Path=Photos, <code>ElementName=UCAscensionImageManagement</code>, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"

In the usercontrol you have
x:<code>Name="UCAIMEventPhotos"</code> Photos="{Binding Path=UCGeneralDataSeries, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"

I assume you mean to bind the ListBox ItemsSource to the UserControl Photos
property, correct?

If so, you used the wrong ElementName in the ListBox ItemsSource binding.


You could also try something like this:
ItemsSource="{Binding Path=Photos, RelativeSource={RelativeSource AncestorType={x:Type SG2_Ascension:UserControlAscensionImageManagement}}, Mode=OneWay}"


Mark Salsbery
Microsoft MVP - Visual C++

Java | [Coffee]

GeneralRe: ListBox Binding From Within A User Control Pin
BlitzPackage21-Jun-09 17:08
BlitzPackage21-Jun-09 17:08 
QuestionRe: ListBox Binding From Within A User Control Pin
Mark Salsbery21-Jun-09 17:45
Mark Salsbery21-Jun-09 17:45 
AnswerRe: ListBox Binding From Within A User Control Pin
BlitzPackage21-Jun-09 17:55
BlitzPackage21-Jun-09 17:55 
GeneralRe: ListBox Binding From Within A User Control Pin
Mark Salsbery21-Jun-09 18:01
Mark Salsbery21-Jun-09 18:01 

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.