Click here to Skip to main content
15,881,600 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: beginner : binding ListBox Pin
Pete O'Hanlon26-Sep-12 4:26
mvePete O'Hanlon26-Sep-12 4:26 
GeneralRe: beginner : binding ListBox Pin
dominioYP26-Sep-12 5:41
dominioYP26-Sep-12 5:41 
GeneralRe: beginner : binding ListBox Pin
dominioYP28-Sep-12 5:38
dominioYP28-Sep-12 5:38 
Questionbeginner : listView, add scrollBar Pin
dominioYP26-Sep-12 3:50
dominioYP26-Sep-12 3:50 
QuestionTrying to set focus on DataGrid with DataGridTemplateColumn Pin
abollmeyer23-Sep-12 3:44
abollmeyer23-Sep-12 3:44 
AnswerRe: Trying to set focus on DataGrid with DataGridTemplateColumn Pin
abollmeyer24-Sep-12 14:13
abollmeyer24-Sep-12 14:13 
QuestionOn ContextMenu MouseLeave Pin
Kenneth Haugland21-Sep-12 3:46
mvaKenneth Haugland21-Sep-12 3:46 
AnswerRe: On ContextMenu MouseLeave Pin
Kenneth Haugland21-Sep-12 13:42
mvaKenneth Haugland21-Sep-12 13:42 
Ok, I nearly sovled this myself, though its not the ideal solution:
VB
If Mouse.RightButton = MouseButtonState.Pressed Then
                If TypeOf (selectedElement) Is CustomElement Then
                    Dim ga As CustomLine = DirectCast(selectedElement, CustomElement)
                    Dim contextmenu As New ContextMenu()

                    Dim bord As New StackPanel
                    Dim mi As New MenuItem()
                    Dim mia As New MenuItem()
                    mi.Header = ("Item 1")
                    mia.Header = ("Item 2")

                    bord.Children.Add(mi)
                    bord.Children.Add(mia)

                    AddHandler bord.MouseLeave, AddressOf menuitem1_leave

                    contextmenu.Items.Add(bord)
                    contextmenu.IsOpen = True
                    ga.ContextMenu = (contextmenu)
                End If
            End If

with the mouse leave sub:
VB
Private Sub menuitem1_leave(ByVal sender As Object, ByVal e As Input.MouseEventArgs)
     Dim dep As DependencyObject = DirectCast(e.OriginalSource, DependencyObject)

     'Stepping through the visual tree
     While (dep IsNot Nothing) AndAlso Not (TypeOf dep Is ContextMenu)
         dep = VisualTreeHelper.GetParent(dep)
     End While

     If dep Is Nothing Then
         Exit Sub
     End If

     DirectCast(dep, ContextMenu).IsOpen = False
 End Sub

Problem is that the items are messed up inside the ContextMenu, so it looks wierd. So the next question is does anybod have any ideas on how to do this properly?
QuestionWPF DataGrid Not SHowing Any Data Pin
Kevin Marois20-Sep-12 11:30
professionalKevin Marois20-Sep-12 11:30 
AnswerRe: WPF DataGrid Not SHowing Any Data Pin
Kenneth Haugland20-Sep-12 11:47
mvaKenneth Haugland20-Sep-12 11:47 
GeneralRe: WPF DataGrid Not SHowing Any Data Pin
Pete O'Hanlon20-Sep-12 11:59
mvePete O'Hanlon20-Sep-12 11:59 
GeneralRe: WPF DataGrid Not SHowing Any Data Pin
Kenneth Haugland20-Sep-12 12:10
mvaKenneth Haugland20-Sep-12 12:10 
AnswerRe: WPF DataGrid Not SHowing Any Data Pin
Pete O'Hanlon20-Sep-12 12:01
mvePete O'Hanlon20-Sep-12 12:01 
GeneralRe: WPF DataGrid Not SHowing Any Data Pin
Kevin Marois20-Sep-12 13:23
professionalKevin Marois20-Sep-12 13:23 
GeneralRe: WPF DataGrid Not SHowing Any Data Pin
Pete O'Hanlon20-Sep-12 13:58
mvePete O'Hanlon20-Sep-12 13:58 
Questionstackedbarseries chart: change the axes display Pin
ashlyacht19-Sep-12 10:03
ashlyacht19-Sep-12 10:03 
Question[XML] XML binding Pin
Jayme6519-Sep-12 7:10
Jayme6519-Sep-12 7:10 
Questionplay streaming videos from internet in wpf Pin
sudeep kushwaha17-Sep-12 18:31
sudeep kushwaha17-Sep-12 18:31 
AnswerRe: play streaming videos from internet in wpf Pin
Mycroft Holmes17-Sep-12 20:05
professionalMycroft Holmes17-Sep-12 20:05 
QuestionItemsControl with Horizontal orientation Pin
Kenneth Haugland17-Sep-12 7:25
mvaKenneth Haugland17-Sep-12 7:25 
AnswerRe: ItemsControl with Horizontal orientation Pin
Abhinav S17-Sep-12 7:49
Abhinav S17-Sep-12 7:49 
AnswerRe: ItemsControl with Horizontal orientation Pin
Kenneth Haugland17-Sep-12 8:04
mvaKenneth Haugland17-Sep-12 8:04 
GeneralRe: ItemsControl with Horizontal orientation Pin
Abhinav S17-Sep-12 17:25
Abhinav S17-Sep-12 17:25 
GeneralRe: ItemsControl with Horizontal orientation Pin
Kenneth Haugland17-Sep-12 20:24
mvaKenneth Haugland17-Sep-12 20:24 
AnswerRe: ItemsControl with Horizontal orientation Pin
Kenneth Haugland17-Sep-12 9:35
mvaKenneth Haugland17-Sep-12 9:35 

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.