2
votes
1answer
172 views
WPF - How to stop an ItemsControl psuedo-grid’s columns from dancing/jumping around during layout
Several other questions on SO have come to the same conclusion I have -- using an ItemsControl with a DataTemplate for each item constructed to position items such that they resemb …
0
votes
2answers
28 views
How to get a List<string> collection of values from app.config in WPF?
The following example fills the ItemsControl with a List of BackupDirectories which I get from code.
How can I change this so that I get the same information from the app.config f …
0
votes
1answer
36 views
[WPF]ItemsControl not completely loaded @Loaded event
Hi everyone
I have a propably simple problem, that i just can't seem to figure out:
I've made an ItemsControl which has its datacontext set and shows the data as pairs of Checkbo …
1
vote
1answer
22 views
WPF itemscontrol binding to collection of controls
Hi,
I'm trying to bind to a collection of controls I generate dynamically:
<ItemsControl ItemsSource="{Binding CustomFields}">
And the code:
public ObservableCollect …
1
vote
1answer
24 views
Prism’s ItemsControl seems to have a xaml parse error. Why?
I am at a loss as to why my Shell.xaml's ItemsControl is causing a parse error. I know the syntax is correct because I copied the Silvelright project files from a working project.
…
0
votes
2answers
33 views
getting a reference to a MediaElement inside an ItemsControl (WPF)
Hi , this is a known issue with ItemsControl although I couldn't find a solution :( .
XAML
<ItemsControl x:Name="myItemsControl" ItemsSource ="{Binding videos}" Grid.Col …
0
votes
2answers
213 views
Problem with WPF Keyboard Focus in itemControl
Hi
I have a WPF window which is divided into two portions. One portion contains itemscontrol which generate textboxes depedning on observable collection binding in ViewModel.
Th …
0
votes
1answer
83 views
WPF: Scroll into view a new item in a ItemsControl
I have an ItemsControl that is databound to a ObservableCollection. I have this method in the code behind which adds a new model to the list. I would then like to scroll the new it …
1
vote
1answer
21 views
WPF: Can’t drop dragged data onto an ItemsControl
I have the following XAML:
<DockPanel x:Name="OverViewContainer" AllowDrop="True">
<StackPanel Orientation="Horizontal"
DockPanel.Dock="Bottom"
…
4
votes
6answers
650 views
How to draw line of ten thousands of points with WPF within 0.5 second?
I am writing WPF code to show a real-time plot which is a connected line containing about
10,000 points. It takes about 5 seconds to show a picture in my computer. Does anyone have …
1
vote
1answer
91 views
ItemsControl, VirtualizingStackPanel and ScrollViewer height
I want to display a important list of items using an ItemsControl.
The reason why I'm using an ItemsControl is that the DataTemplate is much more complex in the application I'm wo …
1
vote
1answer
53 views
WPF - styling a lookless control: How to access dependecy properties of control from second level of ControlTemplates?
Hello, I am extending the ItemsControl (class EnhancedItemsControl : ItemsControl), because I want to add several dependecy properties to it - like AlternativeContent which will be …
0
votes
0answers
50 views
How do I get WPF GridSplitter controls working inside an ItemsControl?
Hi all,
Could anyone possibly explain to me why the following simple example works:
<ItemsControl x:Class="UserControl1"
xmlns="http://schemas.microsoft.com/winf …
1
vote
1answer
57 views
WPF items not visible when grouping is applied
Hi,
I'm having this strange issue with my ItemsControl grouping. I have the following setup:
<ItemsControl Margin="3" ItemsSource="{Binding Communications.View}" >
< …
0
votes
3answers
81 views
Can I have a Treeview without the tree structure?
Hi all,
Can someone tell me how I can template a treeview control so that it doesn't look like a tree? Basically, I want to remove the indents at various levels as well as the +/ …
