Windows Presentation Foundation, or WPF, is a subsystem for rendering user interfaces in Windows-based applications.
0
votes
0answers
8 views
how can be add WPF DataGrid in Windows Form?
i am working on wpf datagrid,
and i need to add wpfdatagrid in Win forms.
so how can be add wpfdatagrid?
Please suggest me,
Thanks.
0
votes
0answers
9 views
WPF application(MVVM Ligth) with paging navigation, send parametrs
I have WPF application with paging navigation.
I use MVVM Ligth toolkit. I have two pages - FirstPage(default pag) and SecondPage. On the FirstPage I turn to the SecondPage and want to pass parameter ...
0
votes
0answers
15 views
Listbox width changes regardless of size of list items
Please see Update at bottom of post
I'm writing a WPF app using .Net 4.5
I have a listbox displaying movie info, the xaml is shown below.
<ListBox Margin="10, 5, 10, 10"
...
0
votes
1answer
35 views
Prevent the RichTextBox's height from growing
I have a RichTextBox control in my WPF application. I use it to show log messages. Here's the code:
<Grid x:Name="grid" Margin="20,120,20,20">
<RichTextBox x:Name="txtLog" ...
0
votes
1answer
38 views
how to pass generic list in CommandParameter
I have command which I am executing from my XAML (view) using below code:
<HyperlinkButton Command="{Binding DataContext.HyperlinkGoToCommand, RelativeSource={RelativeSource ...
0
votes
1answer
28 views
Change the SelectedIndex in XAML to nothing
So in XAML im trying to put the SelectedIndex on nothing but without succes. The reason I want to do this is because I have a dropdown menu but I do not want a default value when starting the ...
1
vote
1answer
20 views
How to set Z-index of calender control in wpf
Here i am stuck in wpf calender control.I am using a calender control in WPF but when i call it on GotFocus event of TextBox like
private void txtjobdate_GotFocus(object sender, RoutedEventArgs e)
...
0
votes
1answer
15 views
WPF - Behaviour of ListviewItemFocus selected by arrow key doesn't work like mouseclick
I would like to paint the dotted border of an listview item when I select it with mouse click.
You can see only the dotted border when i select the listview item with arrowkey.
Here you are an ...
0
votes
1answer
11 views
Bind enum with ObjectDataProvider
I have an enum that bind to a ComboBox in my view.
public enum MyItems
{
[Browsable(false)]
Item1,
[Browsable(true)]
Item2,
[Browsable(false)]
Item3,
[Browsable(true)]
...
0
votes
1answer
23 views
Hide or remove a part of a border in WPF
I'm wondering how to remove a little part of a border inside a popup. I marked the part I want to remove with a red arrow in the picture.
Thanks for your help.
Here is the Xaml code
...
0
votes
0answers
4 views
TinyMCE using WPF VB.NET Webbrowser Control
i want to use TinyMCE in a WPF Webbrowser Control. I have downloaded TinyMCE, installed it into my project directory (Visual Studio 2010) and have the following html:
<head>
<script ...
0
votes
0answers
15 views
Why does modifying project output directories cause: IOException was unhandled “Cannot locate resource 'app.xaml'.”
In an attempt to consolidate project settings into property sheets for both C++ and C# projects, the following property sheet was constructed:
<?xml version="1.0" encoding="utf-8"?>
<Project ...
0
votes
0answers
32 views
C# MemoryStream slowing programme performance
I'm working on a project using WPF to display the Kinect ColorImageFrame and a skeleton representation. I also have to record those two videos.
I'm able to display and record (using EmguCV) those two ...
0
votes
0answers
8 views
WPF ListBox SelectionChanged sporadically not triggered on tablet
I'm trying to use a WPF listbox on a tablet.
In a dummy project I just made a listbox with a lot of items and when i select one this item will be showed in a textblock.
I have a selectionchanged ...
0
votes
0answers
30 views
WPF: BindableAttribute vs. DependencyProperty
What are the the up and downsides of exposing properties to the XAML code with BindableAttribute over using a DependencyProperty?
[Bindable(true)]
public int Value {
get; set;
}
vs
public ...