0
votes
1answer
31 views

All binding with different index collection items update at the same time WPF

I have code like this in my WPF view .. <!--Column 2--> <Border Grid.Column="1" Grid.Row="1" > <TextBox x:Name="textB2BR0K2" Text="{Binding Path=ListBlok2B[0].B2B1}" ...
1
vote
1answer
42 views

Routing Commands to Templated Parent

I have a simple custom control that I have a ControlTemplate for. I can't seem to get the command from the Button on the control to route to the command of its TemplatedParent. <Style ...
0
votes
4answers
54 views

How to Binding a ItemsControl.ItemsSource with a property of the window in WPF?

Hi I have a Window like this: <Window x:Class="WinActivityManager" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
0
votes
1answer
28 views

How to set the Control Visibilty of the Second Control depending on the Binding Value of the first

I have a Custom Wpf Control i.e. combobox:WpfTwComboBox. I want to set the visibility using a property called DisableProviderSelector. The usual use of triggers is not helping. The scenario here is ...
0
votes
0answers
79 views

binding margin to datatemplate - wpf

I have an observable collection of rectangle. i'm trying to create a rectangle with 24 rectangles inside it private ObservableCollection<Rect> _macbethCollection; public ...
1
vote
1answer
139 views

Binding to a sibling's child element

I'm working on a UserControl (named DiagramControl) and have a problem. The UserControl's code is as follows: <UserControl> <Border> <Grid> <ScrollViewer ...
0
votes
2answers
204 views

WPF ComboBox Display Issue

I have a ComboBox that's bound to a Collection of User objects. The combo's DisplayMemberPath is set to "Name," a property of the User object. I also have a textbox that is bound to the same object ...
2
votes
1answer
190 views

Multiple Data Contexts in View

I have tried a few times to find an answer in the posts but not found yet (at least in what I understand since fairly new to WPF). I define a Data Context in the view constructor: this.DataContext ...
0
votes
4answers
74 views

Bind IsEnabled value from string

How can I bind a value of string "Y" or "N" to a isEnabled Value? <TextBox IsEnabled="{Binding Path=StringValueFromSomeEntity, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" /> ...
2
votes
1answer
78 views

I want to bind a class' properties to controls in my user control

I'm struggling to find a solution to my binding issue. I have a User Control, which has a button for calling a separate window, in which the user can select an object. Upon selecting this object the ...
0
votes
1answer
152 views

WPF Binding at different levels

Hopefully this is obvious to an experienced WPF user. When binding do I have to consider the (embedded) level of the target that I am binding to? In the XAML below I have MyTextBox which can accept a ...
0
votes
1answer
117 views

Copying an ElementName binding

I have a TextBox (TB1) which has its Text value bound to another TextBox (TB2) using ElementName="TB2" and Path="Text". I then have a third TextBox (TB3) which I am SetBinding in the code behind to ...
0
votes
1answer
202 views

How to change the Window Form background color with the selected color from listbox in WPF with using Binding?

I am using a ListBox, and I want to change the background window color when I click the ListBoxItem, my method is working but I want to do same thing with binding. <ListBox Grid.Column="1" ...
0
votes
1answer
305 views

Binding WPF Custom Control Width/Height & Dynamically Adjusting Value

I have a custom UserControl that is defined by the following XAML: <Grid HorizontalAlignment="Left" VerticalAlignment="Top"> <Ellipse Height="100" Width="100" StrokeThickness="1" ...
2
votes
2answers
117 views

Can I bind a WPF control to a field's property?

Because I needed to split some fuctionality between classes, I've arrived at the following situation xaml code <CheckBox IsChecked="{Binding MyObjectField.MyBoolean}" /> view model ... ...
1
vote
0answers
137 views

HierarchicalDataTemplate is not applied while binding to collection consisted of ContentControls

I`m binding a treeview to a collection wich items are of type ContentControl. My hierarchical data template (and also styles) are not applied to the items. <TreeView Name="tvCategories" ...
0
votes
2answers
596 views

Binding not updating in ComboBox Text field when underlying ComboBox item description changes

I am having a binding update problem with my ComboBox. My ComboBox's ItemSource is bound to a list of LaneConfigurations. The ComboBox's SelectedItem is bound to the SelectedLaneConfiguration ...
1
vote
2answers
1k views

How to use stringformat in multibinding in WPF XAML

As you know StringFormat is of great importance for data representation in WPF. My problem is how to use StringFormat when multibinding in WPF? If I give a very simple example: We have ...
1
vote
1answer
124 views

Simplify binding for non-standard button

We are using Caliburn Micro and it's pretty nice but now we are using the new Ribbon control (which comes with .NET 4.5). This control has RibbonButton and while this button has a click event and ...
0
votes
1answer
328 views

Binding ColumnDefinition.Width to a DataGridTextColumn does not fire when the usercontrol loads

I have a WPF usercontrol that holds a grid, some textboxes, and a DataGrid. The textboxes are filers for the data in each column so I'd like them to stay above the relevant column. This is easy unless ...
0
votes
1answer
222 views

WPF User Control XAML binding

I have following user control: <UserControl.Resources> <Style TargetType="HeaderedItemsControl"> <Setter Property="Template"> <Setter.Value> ...
2
votes
2answers
246 views

Creating UserControls with ViewModels in WPF

do you think is a good practise to create a UserControl already with a ViewModel and deploy both together? This way the UserControl will be binded to the ViewModel from stock. Looks as a good idea to ...
1
vote
1answer
140 views

Canvas ItemsControls item position issue

<Canvas x:Name="MainCanvas" Width="350" Height="622"> <Canvas.RenderTransform> <CompositeTransform TranslateX="-350" /> ...
0
votes
1answer
114 views

List of URLs of images in Model, want to draw images in the View

In my Model, I have a list of ImageUrls (as a List), which are all images found from Flickr. I'm looking for a way to draw those images in a WPF Gui and have no idea as how to design the XAML and bind ...
0
votes
3answers
345 views

Bind label Foreground to a variable

I have a User Interface and I am changing the background property of the main grid. Now some give a very pleasent look but for some there is difficulty reading the text as displayed. However, a ...
0
votes
2answers
46 views

List object Binding - altering the model list from within the list item control

What I have: I have a Model object called Job which holds a list of JobTask 's in an ObservableCollection - let's call this taskList. I display a Job by having an ItemsControl - ...
0
votes
2answers
227 views

How can I bind one property to another property, offset by a specific amount?

I'm trying to bind two points of a line to two Ellipses, which are inside ScatterViewItems. At the moment, I'm able to bind to ActualCenter.X and .Y for the ScatterViewItem, which works, but because ...
0
votes
1answer
340 views

Can't bind to property of one control in a DataTrigger to other control in different grids

I have two controls in this example but in the real application i have many more whick depending of the value of the property Content of a Label in Grid one (for example), some other Labels, ...
0
votes
1answer
2k views

How to bind click of a button to change the content of a panel (Grid) using XAML

I am creating a UI of a WPF Application, and while working on the implementation of the software's features, i didn't have much experience with creating the UI. Now I need to a way to change the ...
1
vote
1answer
727 views

WPF FrameworkElementFactory Image creation Not able to AddHandler for MouseDownEvent

I am using Framework ElementFactory for creating a image in DataTemplate. While trying to handle the MouseDown Event for the Image type, an exception is thrown - "Handler Type is not valid. How can ...
0
votes
3answers
125 views

Bind different Properties from a ViewModel depending using triggers

I am trying to achieve a simple thing, or i think it's simple but i don't know if it's possible... Imagine the following scenario... In the ViewModel i have one Property called SelectedProduct and ...
1
vote
1answer
553 views

WPF Implicit selection of template using DataTemplate, but outside of 'List'

In my project, I have TreeView, which contains a tree of objects of various types (all subclassed from the same superclass). To the right of my TreeView I would like to have a "panel" (at the moment ...
0
votes
1answer
37 views

Binding dependency property on every control to a single propertty. can it be done?

i have threee controls and this is wat i need to accomplish ctrl1 - dep property isvisible - bound to - visible property in VM ctrl2 - same dep property -same binding ctrl3 - same dep property - ...
4
votes
1answer
328 views

WPF - How Can I make a custom Border

How Can I make a custom Border like this: i want use a Polygon at the top of border but i don't know how do it :(
0
votes
2answers
407 views

How do I pass a Treeview's SelectedItem to another command?

I created a treeview in WPF MVVM with a hierarchical DAtaTemplate property. Outside of the Treeview, I have an "EDIT" button. On press of edit button I want to pass the Treeview's selectedItem to the ...
0
votes
1answer
564 views

Providing an initial image placeholder for the WPF Image class

When i run the project a runtime error ocure: Error: Property 'UriSource' or property 'StreamSource' must be set. because this.ImageUri is null , i don't know why this.ImageUri be null ! help me I ...
3
votes
1answer
2k views

WPF Control TabItem visibility from a checkbox

I looked at: Visibility Binding using DependencyProperty and http://msdn.microsoft.com/en-us/library/system.windows.controls.booleantovisibilityconverter.aspx ...
0
votes
2answers
94 views

WPF-DataBinding-Resrouce - Applying a new value to resource does not affect binded controls

my code is as blow : Xaml: <UserControl.Resources> <Bll:HandHeld x:Key="hh" > </Bll:HandHeld> </UserControl.Resources> the Other Xaml for binding ...
0
votes
1answer
891 views

How to get wpf button's parent parent

I want to get a button's parent's parent. I am able to get the parent using Dim tempB As Button = CType(sender, Button) Dim g1 As Grid = CType(tempB.Parent, Grid) (in my click handler). But if ...
0
votes
1answer
68 views

wpf calling particular array item from button

I have a Movie class with a Dim _characters = New ObservableCollection(of String) In my MainWindow.vb i have, Dim movies = New ObservableCollection(of Movie) Me.parentG.DataContext = Me.movies ...
1
vote
5answers
1k views

wpf binding to string

I have a Movie class with a Dim _characters = New ObservableCollection(of String) Characters is the associated property to get and set How can i get characters to show up in the listBox using ...
0
votes
2answers
44 views

wpf access lisbox selected item if it isn't string

I have a listbox which displays Name property from an array of Movie objects <ListBox Name="listBox1" SelectionChanged="listBox1_SelectionChanged"> <ItemsControl ...
0
votes
1answer
1k views

wpf adding new items to a listbox

Sorry if the Syntax is off, i typed this on Notepad, (temp. issues with computer with VS) i have a class Movie with a Title property, i have Dim movieList = New ObservableCollection(of Movie) ...
5
votes
2answers
3k views

How to use User Controls in WPF MVVM

Hi I am building a wpf application in which a screen will be comprising of different user controls for performing various application. I wanted to know the right process for doing this in MVVM? ...
0
votes
1answer
255 views

WPF Xaml passing Control in attribute

I have a TextBox (called SearchBox) and a ListView (called EmployeeList). The TextBox's TextChanged event displays search results in the ListView. This all works good, but I need some extra ...
4
votes
2answers
2k views

WPF Listview row background blinking effect

I use WPF with a ListView control. When a certain parameter is set to True i want the row in the ListView to have a blinking animation. I have the following code which works but the animation stops ...
1
vote
2answers
785 views

How to enable wpf controls through data binding on a selected item from a combo box

I am looking for a way where a control can be enable when an item from a combo box is selected. Is there a simple way through data binding when a user selects an item from a combo box that it then ...
2
votes
1answer
81 views

Binding AttachedProperty to object's property

I'm trying to bind the Canvas.Left and Canvas.Top attached properties to my custom X and Y properties, with no success, I'm using the following XAML. <Style TargetType="{x:Type ...
1
vote
2answers
2k views

WPF ScrollViewer show border when ScrollBar is Visible

i want to add a border to my scrollviewer. This order should only be shown when the ScrollBar of the ScrollViewer is Visible (VerticalScrollBarVisibility set to "Auto") Thanky you!
1
vote
1answer
332 views

Change Usercontrol textblock from MainWindow

Hi I got user control called "Order" and In "Order" control, I got another user control "Status". Then, I put Order Control into the Mainwindow. When the users change language, I write as below. // ...

1 2 3 4 5