Represents a control that can be used to present a collection of items.

learn more… | top users | synonyms

0
votes
0answers
14 views

Using ItemsControl to bind buttons top/left position on canvas Windows Phone

I am using ItemsControl and have several buttons and place them at a specific location on the canvas. However, the Canvas.Left and Canvas.Top always place all buttons at 0,0. ...
1
vote
0answers
22 views

WPF multidimensional int array in ItemsControl with TwoWay

I have a multidimensional int array (vectors) which I want to display in a ItemsControl with TextBox as DataTemplate. I use Binding to a VectorList which is a List< int[] >. int[,] did not work, ...
0
votes
1answer
34 views

How do you get Canvas.SetTop to work on ItemsCollection items?

Below is the complete program (XAML and code behind). When started you will see: When you click [Show/Hide] you see: When you uncheck Home and Documents and click [Apply] you see: As you can ...
0
votes
0answers
27 views

ItemsControl for UserControl no targetName

I'm going to phrase this differently. I have a user control with a transparent background right now, it's in a list in my mainwindow code behind. When the user clicks a button, it adds the user ...
0
votes
1answer
46 views

Grid Items was not render in proper position of row and column

i have a trouble in bind data to Grid, element was generated but not in a proper row and column when assign a source at that time all data will be present but not in a proper grid's row and column ...
0
votes
1answer
33 views

binding to dynamic resource in ItemsControl on the ItemsSource Property

Hey I was hoping someone could answer a couple questions for me. How am I supposed to ensure that the bound data to itemsource updates dynamically? I can't change bindingsource from staticresource to ...
0
votes
0answers
45 views

how to resize items in ItemsControl wpf

I have ItemsControl which has a collection as source with list in it, so I created a expander control for the list. When I am expanding one item it is re sizing the column height for all the other ...
0
votes
0answers
21 views

Silverlight: How to change ItemsControl Template property with one contained in another project from code behind

I've an ItemsControl in my MainPage.xaml with Template = {StaticResource Template1} and I need to change this using Template2 but from codebehind because it's on MouseEnter. Template1 and Template2 ...
0
votes
1answer
19 views

WPF How to bind list to itemscontrol with each item being paired to a customcontrol and bound to the ith item in list

I was wondering how I bind to the ith element of a list I am using for itemscontrol. My code looks like this: <ItemsControl x:Name ="Signalviewer_Control" ItemsSource="{Binding Source = ...
0
votes
1answer
24 views

Add behavior to RadioButton in ItemsControl (Windows 8 Search)

I'm implementing the search contract (results page) of a Windows 8 application. I've designed everything to follow MVVM. With that, I'm trying to wire up a command to the 'filtersItemsControl' that is ...
0
votes
0answers
64 views

Scrollviewer and ItemsControl VerticalScrolling into nirvana

Hi i've got a complex ItemsControl wich is used to display news (variable height!) with a slide/fade in effect. (like google currents) my problem now is that the scrollviewer will calculate the ...
0
votes
1answer
31 views

Adding controls to an ItemsControl that is placed into a UserControl when we use UserControl?

I need to make a Usercontrol and add it's Controls in the Window that i use it,so i've defined an ItemsControl inside it as shown below: <UserControl x:Class="MySystem.Controls.DropDownPanel" ...
1
vote
2answers
79 views

ItemsControl Element is already the child of another element

I am trying to add controls dynamically into my ItemsControl. I am using RadHubTile control but I think this applies to any control. My XAML <ItemsControl x:Name="itemsControl" ...
1
vote
2answers
57 views

How to setup a grid as template for an Items control?

I'm trying to create an ItemsControl that uses a grid as its ItemsPanel in such a way that it has two columns, where the first columns width is the width of the widest item in that column, and has as ...
0
votes
1answer
35 views

Set Grid Column Width to Bound Perctange

I want to display a Rectangle with a dynamic Width based on a bound data source. I originally looked into using a Converter, but wasn't able to bind to the converter parameter to get a read dynamic ...
0
votes
0answers
21 views

WPF: Making a grid based block diagram dynamic

I have been building a block diagram using Grid. The diagram consists of two boxes and three lines as follows: <DockPanel> <Border Width="450" Height="200" DockPanel.Dock="Right" ...
0
votes
1answer
28 views

Floating ItemsControl

The ItemsControl I need must have this appearance: For ItemsPanel I have set a StackPanel with a horizontal orientation. <Style TargetType="local:ParameterItemContainer"> <Setter ...
0
votes
0answers
33 views

updating ItemsControl at run time wp7

i am displaying a list of my Items using ItemsControl, so that i am just assigning datasource (List<Item> to the ItemsControl's ItemSource) but the problem is whenever the list is scrolled, i ...
0
votes
1answer
71 views

How to switch between 2 data sources for ListBox.ItemsSource

What is the best/elegant way to bind ItemsControl.ItemsSource to 2 different sources best on a given property? The binding should be done only to one of the 2 collection, the selection to which ...
1
vote
1answer
121 views

Set focus to 1st textbox in items control

Let's say I have an items control that is bound to a list of items on the VM. Inside the datatemplate is a textbox. How would I set focus to the first textbox in either XAML or the VM? Thanks in ...
0
votes
0answers
28 views

How to get current item index from ItemsControl

I have a user control which inherited from ItemsControl with a Palette property that contains a list of colors, the goal is to assign a color to the items of my user control. <ItemsControl> ...
0
votes
1answer
51 views

UserControl as DataTemplate in ItemsControl

I am trying to use a UserControl as DataTemplate in an ItemsControl. The UserControl is called WorkItemControl and the objects in the ObservableCollection bound to the ItemsSource of the ItemsControl ...
0
votes
1answer
58 views

multiple items in ItemsControl on a Canvas

In the XAML below, please fill in the "WhatGoesHere" node and explain to me how that won't mess up the coordinates on the Canvas. <ItemsControl ItemsSource="{Binding ViewModels}"> ...
0
votes
1answer
123 views

bind item's children control in ItemsControl wpf

i am binding an ItemsControl to a list, but in item template there is a control which is not binding by current dataSource, i want to bind it with another dataSource. but i am stuck at accessing that ...
0
votes
1answer
139 views

Force a break in a items control with wrap panel template

I've got an interesting problem I've been trying to solve. Basically I have an items control that uses a WrapPanel as it's ItemsPanel to simulate a paragraph built from several bound strings. ...
0
votes
1answer
31 views

Nested ItemControls - Binding to Upper Control

I have got one Collection wich contains a Collection itself. Now I want to go through both Collections in wpf. I'm trying to bind the Color Property of the second Collection to a Dependency Property ...
0
votes
2answers
54 views

Reverse Generated Items & Tab Order of ItemsControl Collection

So as we know an ItemsControl will just generate the Items top-to-bottom in its ItemsPanel. Where as yes I can change the sort order and generate them in different ways here's my actual problem. If I ...
1
vote
0answers
28 views

WPF horizontal ItemsControl with usercontrol

I'm trying to design a horizontal stack of UserControls. I have a UserControl named "MiniControl" and an ObservableCollection in my ViewModel named "MiniVideos". In the window i'm trying to put all ...
0
votes
0answers
44 views

Why is the Visual Tree empty on an ItemsControl Container?

I have a requirement get access to particular visual elements in any given view. This is easy on statically declared items in xaml since they are available anytime. However, datatemplated ...
1
vote
0answers
44 views

How can I have a UserControl that contains Buttons on an ItemsControl that control UserControls that are inside of the ItemsControl (Wizard) in WPF?

Fairly new to WPF and I am wanting to create a Wizard. So I have a UserControl called WizardUC.xaml that contains: namespace ClientApplication.View.Wizard { /// <summary> /// ...
1
vote
0answers
59 views

What is the most effective way to 'align' two separate lists by ordinal in a single ItemsControl?

Over-simplifying our model for the purposes of this example, let's say we have two lists of data, ListA and ListB, both of which are of type List<string>. From a data perspective, they are not ...
0
votes
0answers
54 views

Adding custom/existing FrameworkElements to ItemsControl

When I add an overridden FrameworkElement or an existing UI control to an itemscontrol, I get the following binding error. System.Windows.Data Error: 25 : ItemTemplate and ItemTemplateSelector are ...
0
votes
1answer
79 views

Wrappanel in ItemsControl.ItemsPanel throws XamlParseException

In my wp8 app I show some content (images for example). I use LongListSelector, and in each LLS's item have ItemsControl with collection of images. I want to show two images in one line, so I use a ...
0
votes
1answer
45 views

Highlight item in ItemsControl

I want to render a couple of elements using an ItemsControl, and highlight one of them My ViewModel: public class ViewModel { public List<Item> Items; public Item HighlightedItem; } ...
0
votes
0answers
66 views

Positioning Dynamic Elements With ItemsControl and SpotPanel

I am having some issues positioning some dynamic content within a DataTemplate using an ItemsControl. Here is the base XAML of the DataTemplate: <go:SpotPanel ...
0
votes
1answer
95 views

ItemsControl - Custom ItemContainer

I want to create a custom "Wizard"-Control. So I derived a "Wizard" from Selector and created a "WizardPage" derived from HeaderedContentControl. Everything works fine, when I add the "WizardPages" ...
0
votes
0answers
45 views

Applying a property change to an ItemsControl's children from the ItemsContrl.Panel template

Hey guys I'm trying to implement a pan and zoom functionality to an items control. The XAML layout is as follows: <ItemsControl ItemsSource="{Binding Items}" ...
1
vote
1answer
90 views

Sizeable Horizontal ItemsControl in WinRT

I want a Items Control which shows items in a horizontal alignment and it should stretch / size over the whole aviable horizontal space. Currently I have 7 Columns, but it would be possible that the ...
0
votes
0answers
109 views

Unhandled Exception (ManagedRuntimeError) in ItemsControl constructor in Silverlight

I'm receiving an unhandled exception in System.Windows.Controls.ItemsControl, that occurs occasionally. Therefore, it is difficult to debug and find out the cause of this exception. Here are the stack ...
1
vote
0answers
83 views

How can my ItemsControl get the width property (from Items)

I have a small problem how to set the ItemsControl Property Width. I use Datatemplates to fill my ItemControl. Every Item is a small Grid (Text and Rectangle) in a Canvas. When I use the ItemsControl ...
0
votes
0answers
203 views

WPF Nested binding from DataGrid row up to ListView 'CurrentItem'

I'm just tangling with an awkward nested binding issue in WPF. Essentially, I'm trying to bind to a value of the 'currentItem' of the ListView control, from a DataGrid row item, based within the ...
0
votes
0answers
48 views

Flip through pages in RadPagination (XAML/C#)

I want to navigate through different pages through RadPagination Control in Xaml/C#. If RadPagination is only compatible with ItemsControls element, then is there any way to add a page in ...
2
votes
0answers
46 views

Shift selection, scroll and virtualization in ItemsControl

I created a MultipleSelectionTreeView inherited from ItemsControl, which uses virtualization because of the huge amount of data. When I select an item in the tree then scroll down and select an other ...
0
votes
1answer
93 views

Setting rows of ItemPanelTemplate UniformGrid through C#

Here's what I have: <ItemsControl x:Name="InfoGrid"> <!-- ItemsPanelTemplate --> <ItemsControl.ItemsPanel> <ItemsPanelTemplate> ...
1
vote
1answer
144 views

Reusable ItemsControl (e.g. ListViews) + MVVM

I'm building a MVVM application with WPF that uses a number of relatively complex list views. I've adopted the pattern that the collection that the list view binds to is a collection of View-Model ...
0
votes
1answer
69 views

Why AlternationIndex returns 0 for all items in ItemsControl?

I search for some way to show the items index in a ItemsControl that is using DataTemplate. So I found this good question. I used the idea in that question but all the values are zero! The only ...
1
vote
1answer
60 views

Is it possible to use an existing grid when creating an ItemsControl?

I'm trying to create a layout where both the number of rows and the number of columns are dynamic, like shown below: I am looking to have all of the controls hosted in one grid so that I can get ...
0
votes
0answers
91 views

WPF Setting margin on ItemsControl

I have the following probem: I'm using ItemsControl with binding ItemSource. I want to set margin for each DataTemplate inside ItemsControl. I have the following code: <ItemsControl ...
1
vote
1answer
183 views

How to access ScrollViewer in ItemsControl

I'm trying to access the ScrollViewer named 'ScrollViewerItems' in the XAML below and use it in code behind. The name doesn't seem to be recognized, likely because its embedded in the ItemsControl. I ...
0
votes
0answers
76 views

Differents ItemsControl with the same ItemSource

I got an ObservableCollection which is the ItemSource of 3 differents ItemsControl : LeftItemControl,CenterItemControl and RightItemControl, I can't get why the only ItemsControl who works is the last ...

1 2 3 4 5 12