Tagged Questions
1
vote
2answers
27 views
ListBoxItem with ContextMenu item to Command
I'm using a ContextMenu from the Microsoft.Phone.Controls.Toolkit:
xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"
And want to delete a ListBoxItem ...
0
votes
1answer
30 views
Bind to parent control from within context menu within data template
I'm wanting to bind to a parent control from a context menu within a datatemplate.
Unfortunately I'm restricted to .net 3.5 and can't use the x:reference extension introduced in .net 4.
Below is an ...
0
votes
3answers
110 views
ContextMenu in MVVM
I want to bind a contextmenu to a list of commands.
<Grid.ContextMenu>
<ContextMenu ItemsSource="{Binding ItemContextCommands, Converter={StaticResource commandToStringConverter}}">
...
0
votes
2answers
52 views
How can I bind to a parent UIElement within an ItemTemplate?
Im trying to bind to a property of MainWindow, but from a ContextMenu within a datatemplate. How can I achieve this?
I can't use ElementName, as the contextMenu isn't part of the visual tree
I can't ...
1
vote
0answers
139 views
WPF Binding SelectedItem from ContextMenu to Button.Content
i have a ContextMenu on a Button in XAML. The ContextMenu Items are loaded by the ItemsSource property. Now I want to set the text of the button with the SelectedItem.Text of the ContextMenu. Is there ...
0
votes
1answer
135 views
WPF contextmenu mouseover
I am wondering if there is a way to bind the current ContextMenu item to a property in WPF without first clicking on it.
For example:
<MenuItem MaxHeight="20"
...
0
votes
0answers
93 views
WPF ContextMenu in MultiBinding
First of all I would premise that I am quite new to WPF technologies and this is my first question on stackoverflow.
After searching on the web, I didn't find any solution to my problem so I am ...
0
votes
1answer
50 views
Binding an enum type to a context menu showing all variations with the current ticked
How can I bind an enum to a context menu, such that all variations of that enum are shown, and a tick for the currently selected?
0
votes
1answer
79 views
CheckBox behavior difference in a tool bar or as a control
I can get a CheckBox control's isChecked property to a bool property when I place it as a control on a user control or a window. However, if I place it in a Toolbar, it is not even visible except ...
0
votes
1answer
769 views
Bind SelectedItem in a ListBox to CommandParameter in a ContextMenu
Although this question is very similar to others posted, it has a few twist! I have an ObservableCollection of items in a ListBox and use a DataTemplate to display some of the collection members. ...
0
votes
3answers
258 views
Create a ContextMenu for any instance of a given control type
I'm fairly new to WPF and I have a question regarding the "factorisation" of logic across all controls of the same type.
To be more precise, I want to have, for any instance of an Infragistrics ...
3
votes
1answer
443 views
How to access a control from a ContextMenu menuitem via the visual tree?
This seems to be a pretty popular topic, but...
I have the following XAML:
<internal:MyCommandObject x:Name="CommandModel"/>
<Button DockPanel.Dock="Bottom" Command="{Binding DoAction, ...
2
votes
2answers
994 views
WPF context menu whose items are defined as data templates
I have a list view that displays a collection of items, each item has as its underlying data a view model (MVVM).
What I would like to do is display different menu items within the context menu when ...
0
votes
1answer
865 views
Cannot find sourcefor binding with reference 'ElementName=Field'
I have a context menu on a textbox that I'm trying to bind the isChecked property to one of the properties in that textbox's datacontext with a value converter.
The problem I'm having is very ...
-1
votes
1answer
706 views
Cannot find source for binding with reference 'ElementName=textBox' in ContextMenu
I'm new to WPF, I am Trying to add a context Menu to a text box. The Menu Item is called "Upper Case" and all it has to do is take the current text of the text box and make it all caps (ie. ...
0
votes
1answer
153 views
How to dynamically generate MenuItems using x:Reference?
I have a MenuItem whose ItemsSource is set to the following CompositeCollection:
<CompositeCollection>
<MenuItem x:Name="SpinnerMenuItem" Header="Waiting..."/>
...
3
votes
1answer
355 views
Context Menu Binding in C# WPF
When you set an observable collection as the item source of a context menu it lists the type of the each item...i would like to bind the name field of those items in the collection to the header...I ...
0
votes
1answer
939 views
ContextMenu ItemsSource binding problem
There is a problem with ContextMenu with wpf usercontrol. I wrote a usercontrol, and this usercontrol have a windowsformhost, and i want to handle the right button contextmenu of the windows control ...
1
vote
1answer
427 views
ContextMenu CommandParamater binding?
I am trying to bind the commandParamater of my ContextMenu item to another element on the form, however no matter what I try the commandParamater is always null.
Can someone please show me how to ...
1
vote
2answers
556 views
Add ContextMenu to usercontrols in WrapPanel
I've got a WrapPanel from the Silverlight Toolkit in a WP7 application. In my codebehind I add my own usercontrols to this wrappanel. Each usercontrol is a square that displays information about a ...
0
votes
1answer
826 views
WP7 : Bind a MenuItem inside a datatemplate of a ContextMenu to a List<T>
I'm quite new in Xaml developpement (WPF,Sliverlight,WP7).
Here is my problem:
I've got a customized button, when I click on it (long click or hold), I'd like to open a specific contextMenu related ...
3
votes
2answers
960 views
How do I bind IsEnabled property of ContextMenu in Silverlight 4?
How do I bind IsEnabled property in Silverlight 4 (XAML)?
I tried simply IsEnabled="{Binding ABC}" but this is not working - the MenuItem is always enabled.
Thanks in advance for the clues!
Cheers
...
3
votes
2answers
3k views
TreeView ContextMenu MVVM Binding
I currently have a UserControl that uses the MVVM model.
In that control there is a TreeView, which displays some items. I have added a HierarchicalDataTemplate for this TreeView and in that ...
1
vote
2answers
907 views
Binding ContextMenu in DataTemplate
I have:
<ListBox>
<ListBox.Resources>
<DataTemplate DataType="{x:Type ViewModels:StyleViewModel}">
<DockPanel> ...
0
votes
1answer
316 views
Simple Contextual Menu for cocoa app with IB binding
I' m using a simple context menu on an NSTableView. In order for the right-click to pop it up I' ve used IB bindings and connected the "menu" outlet of NSTableView to my contextMenu instance(NSMenu). ...
1
vote
1answer
2k views
Find Bound Item from TreeViewItem from ContextMenu
I have this Tree View that looks like this:
<TreeView
Grid.Column="0"
Grid.Row="2"
MinHeight="100"
MinWidth="100"
...
1
vote
4answers
2k views
WPF - Do not show Context menu when ListView is empty
I have a ContextMenu bind to ListView, but I don't want to be the menu shown when the ListView is empty. I tried direct binding to element, tried binding using FindAncestor, but none of these works ...
0
votes
2answers
731 views
Xaml Namescope and Template Question Concerning WPF ContextMenu
Everything in the code below works except for the binding on the ContextMenu. This is evidently due to the fact that the ContextMenu is located inside of a Style, which puts it in a different ...
0
votes
1answer
1k views
how to pass data when using MenuItem.ItemContainerStyle
i've been trying to have a dynamic ContextMenu to show the name property of each of the object in its collection of objects.
here is concrete example ,i'm connecting to a webservice to pull contacts ...
10
votes
4answers
9k views
WPF ViewModel Commands CanExecute issue
I'm having some difficulty with Context Menu commands on my View Model.
I'm implementing the ICommand interface for each command within the View Model, then creating a ContextMenu within the ...
1
vote
1answer
4k views
Binding a TreeView with ContextMenu in Xaml
I'm pretty new to Xaml and need some advise.
A TreeView should be bound to a hierarchical object structure. The TreeView should have a context menu, which is specific for each object type.
I've ...
2
votes
1answer
2k views
How to bind Popup's (or ContextMenu's) PlacementTarget to an element within UserControl?
In a scenario like this:
<Grid>
...
<local:MyControl x:Name="MyCtl" Grid.Row="1"/>
<Popup PlacementTarget="{Binding ???}"/>
<Grid>
I need to bind PlacementTarget to a ...
1
vote
2answers
2k views
WPF: Binding ContextMenu to visual parent
I know ContextMenus aren't part of the visual tree, but I've been trying to bind the Visibility property of a ContextMenu to a property on its parent UserControl. So far I've tried ancestor binding ...
9
votes
1answer
12k views
WPF ContextMenu with ItemsSource - how to bind to Command in each item? [duplicate]
Possible Duplicate:
Specify Command for MenuItem in a DataTemplate
I have a collection of objects (viewmodels) that represent menu items. Each of them have a command that I would like to ...
1
vote
1answer
4k views
ContextMenu Binding Source within a DataGrid using MVVM
I've got a datagrid column as below:
<toolkit:DataGridTemplateColumn>
<toolkit:DataGridTemplateColumn.CellTemplate>
...
5
votes
1answer
5k views
Bind ContextMenu's MenuItem visibility to ListView selection
I have a user control with a ListView containing simple items from an ObservableCollection. I would like the ContextMenu of that ListView to contain items depending on what's selected in the ListView. ...