Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
2answers
34k views

WPF Trigger for IsSelected in a DataTemplate for ListBox items

I have a listbox, and I have the following ItemTemplate for it: <DataTemplate x:Key="ScenarioItemTemplate"> <Border Margin="5,0,5,0" Background="#FF3C3B3B" ...
10
votes
1answer
5k views

How can I make a column in a listbox in WPF the same width for all items?

I have a ListBox with an ItemTemplate consisting of a TextBlock and a ComboBox. The problem is that the width of the text inside the TextBlock is not the same for each item and the ComboBox controls ...
9
votes
2answers
4k views

Different item template for each item in a WPF List?

I have many items inside a list control. I want each item to have a different item template depending on the type of the item. So the first item in the list is a ObjectA type and so I want it to be ...
6
votes
3answers
8k views

How to make a ListBox.ItemTemplate reusable/generic

I'm fairly new to WPF and trying to understand how best to extend the ListBox control. As a learning experience, I wanted to build a ListBox whose ListBoxItems display a CheckBox instead of just text. ...
5
votes
2answers
584 views

ListBox Disabled state in Silverlight 4

So I'm styling a ListBox and I've got to the part where I need to do a greyed out style when the ListBox is disabled. However when I look a the states tab in Blend, there's only Validation States ...
5
votes
2answers
2k views

How do I set ItemTemplate dynamically in WPF?

Using WPF, I have a TreeView control that I want to set its ItemTemplate dynamically through procedural code. How do I do this? I assume I need to find the resource somewhere. ...
4
votes
2answers
514 views

WPF Programmatically create treeview itemtemplate/columns

I have an application that reads database tables and puts it into a treeview. The current ItemTemplate for the treeview looks like this: <TreeView.ItemTemplate> ...
3
votes
1answer
36 views

Binding a nested ListBox to a nested List?

I have the following ViewModel-Property: public List<List<string>> Names .... //It's a dependency property In my view I would like an ItemsControl that has an ItemsControl: ...
3
votes
4answers
51 views

How can I prevent duplication of the content in itemtamplate for the alternating template in repeater?

Is there a way to prevent duplication ot an itemtemplate content which will just appear with a different css class for the alternating template block? <asp:Repeater ID="rptCommentHistory" ...
3
votes
2answers
96 views

Why does C# expect a “;” in my ItemTemplates?

I have a page with the following code: <ItemTemplate> <a id="el_<%# ((MyType)Container.DataItem).FirstName) %>" class='activate_edit_modal' ...
3
votes
2answers
338 views

Binding with Static properties in ListView ItemTemplate

I'm having some problems with WPF binding. I have an assembly with some const properties in class Values, that correspond to columns from datatable. I want to bind the value from a column to a ...
3
votes
2answers
266 views

Display multiple types from a single list in a WPF ListBox?

I'm relatively new to WPF, and it looks like there are probably a bunch of ways to do this, but I can't get any of the ones I have tried to work. I have an ObservableCollection that contains two ...
3
votes
3answers
1k views

Silverlight ItemsControl with Alternating ItemTemplate

Silverlight does not support Alternating Item Templates in an ItemsControl. I have a few ideas in mind as to how to accomplish this, but to avoid polluting the potential answers, I'll leave them out. ...
3
votes
4answers
9k views

ASP.NET Repeater Template, Conditional Code for every Nth element

I'm using an asp.net repeater to create a bunch of images. The image markup is all the same so the standard <ItemTemplate> is fine. However, I want to wrap K images in a div. Lets say I bind ...
2
votes
1answer
73 views

VS 2010 SDK. Templates

If you try and create an MVC3 project, you’ll see that you have an ability to add Controller or View with rc. And context menu you get on Controller folder with rc will magically suggest to add ...
2
votes
2answers
92 views

Binding to a dictionary in an itemtemplate

I have a List< Dictionary< string, string>>. In the ItemTemplate of my GridView I would like to bind to the values in the dictionary based on their keys. <ItemTemplate> <tr ...
2
votes
1answer
2k views

WPF: Changing a ComboBox's ItemTemplate removes the ability to jump down the list as you type. Any way to fix this?

PersonVM.cs public class MainWindowVM { public MainWindowVM() { PersonList = new ObservableCollection<Person>(Employees); } private Person[] Employees = new Person[] ...
2
votes
2answers
185 views

Why Does ItemsControl Not Use My ItemTemplate?

I am able to use an ItemTemplate within an ItemsControl to render items in a specific format. However, if one of the items within the ItemsControl happens to be, say, a TextBox, that TextBox is ...
2
votes
2answers
150 views

Repeater within Repeater (ajax based wepapp)

For the solution, I cannot use any postback methods, because this is all working through ajax. The solution need to be implemented in the asp.net code. I have a List<WebPage> that contains a ...
2
votes
2answers
731 views

WPF - Very basic ListBox.ItemTemplate Question

Ok, this is an embarassingly simple-looking problem, but is driving me crazy. I'm learning about DataTemplating and am trying to apply a very VERY simple ItemTemplate to a ListBox. However, when I ...
2
votes
1answer
2k views

How to use databind records in inline if statements

here is my problem: I've got a repeater on my asp.net (VB): <asp:Repeater ID="Repeater1" runat="server"> <ItemTemplate> <asp:Label ID="Label1" runat="server" Text='<%# ...
2
votes
3answers
791 views

.Net designer.cs not updated when control is in ItemTemplate

I have a simple form. Let's say one textbox and a button. If these items are placed on the aspx page, they are automatically added to the *.designer.cs file and they can be referenced in my C# code ...
2
votes
5answers
2k views

How can I get alternate styling in <ItemTemplate> (.NET)?

I'm using EPiServer for this website. Unlike asp:DataList, EPiServer:PAgeList does not have AlternatingItemTemplate. So I need to create a counter and increase this counter in my ...
2
votes
1answer
5k views

Using ItemTemplate for a TreeView when adding items in code

I'm adding TreeViewItems manually in code behind and would like to use a DataTemplate to display them but can't figure out how to. I'm hoping to do something like this but the items are displayed as ...
2
votes
1answer
8k views

WPF - Implement ItemTemplate for an ItemsPresenter?

I've been working on a SplitButton control for WPF and its basically done, but I'm trying to go through all the possible properties that can be set on it and make sure they are actually implemented. I ...
2
votes
2answers
2k views

How can I use a custom TabItem control when databinding a TabControl in WPF?

I have a custom control that is derived from TabItem, and I want to databind that custom TabItem to a stock TabControl. I would rather avoid creating a new TabControl just for this rare case. This is ...
2
votes
3answers
8k views

ComboBox with ItemTemplate that includes a button

So, lets say I have a ComboBox with a custom data template. One of the items in the data template is a button: <ComboBox Width="150" ItemsSource="{Binding MyItems}"> ...
2
votes
5answers
2k views

WPF - ItemTemplate not acting as expected

I have a UserControl which I'm using to display a list of UIElements. The control consists of a single ItemsControl with it's ItemPanelTemplate switched for a horizontal StackPanel, its ItemsSource ...
2
votes
2answers
2k views

multiple userControl instances in tabControl

I have a tabControl that is bound to an observable collection. In the headerTemplate, I would like to bind to a string property, and in the contentTemplate I have placed a user-control. Here's the ...
1
vote
1answer
22 views

How to prevent ItemTemplate and AlternatingItemTemplate from creating newlines

In aspx, using either a ListView, Repeater, or any of the other standard controls that are listed under the visual studio 2010 data toolbox: My data source is simply a set of records made up of ID, ...
1
vote
1answer
52 views

ListBox ItemTemplateSelector doesn't work

I am attempting to use an ItemTemplateSelector on a WPF ListBox and have looked at several examples online. Seemed simple enough but I cannot get it to work. I am hoping that someone can tell me where ...
1
vote
0answers
37 views

How to obtain Container.DataItem from parent control?

Suppose that I create an ASP.net repeater. Suppose further that I put an ASP.net GridView in the ASP.net repeater's ItemTemplate. Suppose that it looks like this: <asp:Repeater runat='server' ...
1
vote
1answer
111 views

GridView ItemTemplate DropDownList Manipulation

Assume I have templated dropdown list in my gridview (which is bounded to all rows) The dropdownlist is filled through an array.. //Fill Array private ArrayList GetDummyData() { ArrayList ...
1
vote
1answer
61 views

ComboBox.ItemTemplate for multiple controls

I have 10 ComboBox controls that will use the same item template (an Image and a Textblock), and the same items, so I want to define this template on a more global scale (page level). This is what ...
1
vote
1answer
56 views

Shrinking effect of Tiles on ListBox on Windows Phone

I've created a listbox like this <ListBox Name="lstNews" SelectionChanged="lstNews_SelectionChanged"> <ListBox.ItemsPanel> ...
1
vote
1answer
330 views

Mobile Jquery collapsible div within itemtemplate of gridview not clipping internal div

Mobile JQuery jquery.mobile-1.0rc2.min.js HTML 5 Asp.net 4.0 I have a gridview item-template where I have implemented the collapsible div from JQuery Mobile. In the h3 I have another div which I ...
1
vote
1answer
116 views

How to add Control dynamically to Item Template in Grid View?

I am using a Grid View to display certain details, in a template column, i am supposed to display more than one value as a Item Template, Say for Example, Some Auto-generated number is binded in Hyper ...
1
vote
3answers
564 views

How to enable and disable the LinkButton in GridView when CheckBox in the same GridView was checked?

I have a number of Template Fields in my GridView. In which I have One CheckBox called "chkSelect" in it and in another Template Field I have one LinkButton called "lnkgvQCAttribute". Here I want to ...
1
vote
1answer
214 views

Problem with RadComboBox with ItemTemplate of asp:TextBox

I am using a RadComboBox with an ItemTemplate that contains 50 TextBox controls that a user can enter information into. I add the 50 TextBox controls dynamically (see below). When information is ...
1
vote
1answer
117 views

Blend 4 Change Window State using GoToStateAction behavior from within an ItemTemplate

I've been trying to get this working for a few hours now. I have a Listbox control with items from a database in it. I have 2 window states, "default", and "details". I'd like to use the ...
1
vote
2answers
344 views

using qTip inside asp.net listview itemtemplate

I am trying to use qTip inside an ASP.NET ListView. The page uses a MasterPage. There is an Image in each Item which will show a DataBound value when hovered. Below is my ItemTemplate code: ...
1
vote
2answers
905 views

ASP.net access control in FormView ItemTemplate

I have a form view with an item template with a control inside, is it possible to access that control OnDatabound so I can bind the control with data. I'm using a panel as an example here. ...
1
vote
1answer
233 views

VisualStudio ItemTemplate installation Error: Value does not fall within the expected range

I have written a handful of very simple Visual Studio c# Item Templates. The templates are based on the VisualStudio 2010 SDK SP1. All works fine except one item template; After some minor changes ...
1
vote
2answers
346 views

Access <LI> class inside Repeater

I have a Repeater that contains ItemTemplate which has <li>'s. I need to access this <li> in the RepeaterProdView__ItemDataBound event. <asp:Repeater ID="RepeaterProdView" ...
1
vote
2answers
286 views

How can I set item count value per coloumn in DataList ItemTemplate?

I want to set my DataList control to have only 7 items visible in each column after DataBind. Let's say' if I have 18 items in the data source; DataList should be rendered as 3 colums. 1st column ...
1
vote
1answer
245 views

TextBox column in GridView

I added a textbox column in the gridview by using the following code. <asp:TemplateField HeaderText="Order"> <ItemStyle/> <ItemTemplate> ...
1
vote
1answer
181 views

Custom control's content can't bind to parent of the control

I have following XAML (simplified, no ending tags): <Window Name="myWindow" DataContext="{Binding ElementName=myWindow}" > <DockPanel> <tb:ToolBar Name="toolbar" ...
1
vote
2answers
759 views

Strange focus behavior for simple WPF ItemsControl

I'm seeing strange behavior when it comes to focus and keyboard navigation. In the example below I have a simple ItemsControl that has been templated so that it presents a list of CheckBoxes bound to ...
1
vote
2answers
561 views

Binding inside listbox itemtemplate problems

I have two separate binding problems with listboxes with an itemtemplate which contains a texbox. 1) One listbox binds to a list of strings. How can I display each string inside the textboxes created ...
1
vote
1answer
119 views

How to apply same style to a group of controls based on binding value inside DataTemplate?

I have recently started learning Silverlight and can't figure out how make this work. <ComboBox.ItemTemplate> <DataTemplate> <StackPanel Orientation="Horizontal"> ...

1 2 3 4