WPF controls include UserControls, which are composite collections of other controls, and CustomControls, which are controls built with WPF styles and templates.

learn more… | top users | synonyms

2
votes
0answers
65 views

Interactive dynamical wpf grid

I have a collection which I want to place on a grid. The collections items have properties that refer to where on the gird the item should be placed, and how many columns and rows the item should ...
1
vote
0answers
54 views

how to bind different xml files to data grid in wpf?

we have 40 xml files.we want to bind to data grid dynamicliy. 40 xml files by diffrent structer for example a xml file : <a> <at1="val1" at2="val2" > <at1="val4" at2="val5" > ...
0
votes
0answers
61 views

Expanders in WPF

I am new to WPF and working on some projects for our UI. Now to quote my problem 1.) I have openFileDialog box in which user can select dll or text files. 2.) If they select dll we are fine and user ...
0
votes
0answers
27 views

Make Scatterview Appear After Touch

The basic idea is that I have this map image. When a user touches a building, the Scatterview box will appear next to the building. So visibility is set to false initially for the item, but how ...
0
votes
2answers
57 views

How to create yellow toggle button like Word options

I'm trying to create a menu with buttons similar to the options menu in Word (below). Is this a specific WPF control that I'm missing, or a custom styled button? I tried setting the background when ...
0
votes
1answer
85 views

Find children of a user control, in a tab item

I have an issue related to finding children of a user control. The user control resides in a tab item of a tab control XAML <TabControl HorizontalAlignment="Left" Height="100" ...
0
votes
1answer
73 views

On Button Click validation in WPF

I am working on the WPF application. In my application there are different forms which save the data. I want to validation the data on button click or while lost focus from control. I want WPF ...
0
votes
0answers
28 views

Splash Screen with dynamic Content

I am developing a splash screen for an application , i would like to know how to create a splash screen similar to the "Outlook Mail or Visual studio" showing the animations, with some message while ...
1
vote
1answer
55 views

Accessing WPF controls from a hosting WinForm application

I have a WinForm application in which I am trying to replace my toolbar with a WPF toolbar. My solution now contains two projects: A WPF user control project that defines the WPF toolbar A Windows ...
0
votes
2answers
176 views

WPF - Drawing on canvas with mouse events

I have a problem with handling mouse events on canvas. I want to draw on it using mouse and I've come up with these event handlers, but they don't do anything when I start drawing. private void ...
0
votes
3answers
147 views

How to save form data to XML or CSV?

We have currently built a application that uses both textbox and combo boxes. We want to create a save button in a User Control Library that we have already built, and have it save all the data ...
0
votes
1answer
31 views

How to access a custom property in XAML

I have created a UserControl with a dependency property named CustomLabel of type String. The control contains Label which should display the value of CustomLabel property. I can do this in code ...
2
votes
0answers
45 views

How does touch / gesture support in WPF compare with Windows Store API

I have been looking but have been unable to find as yet a nice comparison of the differences in touch / gesture support between the Windows Store app API's and WPF. I have seen that WPF includes some ...
1
vote
2answers
60 views

How to expand a control

I've got a UserControl which has a grid, whose specification is as follows: <Grid Name="fieldsGrid" Margin="15,0,0,10"> <Grid.ColumnDefinitions> ...
0
votes
0answers
37 views

How to set the height of a hosting Windows Form according to the actual height of a WPF user control?

In my WinForm application I have the following class: public class ItemProperty { public string Name { get; set; } public string Value { get; set; } } I've added a WPF user control that is ...
0
votes
3answers
29 views

How to Add Column infront of another column through Code Behind?

While I am In Xaml, Say i have 2 Column Definitions <Grid.ColumnDefinition> <ColumnDefinition> <ColumnDefinition> </Grid.ColumnDefinition> I would like to add an Extra ...
0
votes
0answers
59 views

Resizing with Viewbox, Canvas and Drag-Drop items

I want my application to have a Canvas overlaying a background Image. The Canvas will contain objects (TextBlocks, etc.) that can be repositioned (setting Top, Left) via drag-drop. The application ...
0
votes
2answers
49 views

Indicating server unavailability in WP8

I'm looking for a best practice to notify that connectivity to a server is available or not. Unavailability can either mean that there is no network connectivity or that the server is down. ...
0
votes
1answer
65 views

WPF application crashes when opened the application using remote desktop connection

All, I am running my WPF application using VS2010 and it is running fine in my machine. But when I remote desktop into my machine(same machine) from a different machine, application crashes suddenly ...
0
votes
1answer
136 views

Allow users to resize Expander in WPF

I have a lot of C# and WinForms experience but am a newbie to WPF. I have a Window with an Expander which expands downward. Much like the question box I'm currently typing in, I'd like users to be ...
0
votes
2answers
41 views

Insert in a dropdownlist a line to separate two intervas

i have a dropdownlist filled with the 24 hours. After the 12:00 i want to insert a line to differentiate two timeslice. How can i do? Thanks
0
votes
1answer
115 views

How to get selected cell value on DataGrid SelectedCellsChanged in wpf?

I want to get cell value on DataGrid selected cell Changed event in my wpf application. Please anybody help me out of this.
0
votes
0answers
45 views

wpf checklistbox with Shift shortcut for multi selection

I would like to implement a wpf checklistbox with Shift/Ctrl shortcut for multi selection. Got the following solution, but it can only multi select the TEXT area with Shift/Ctrl, in the checkbox ...
-1
votes
1answer
116 views

How to apply Windows Forms Control to WPF Custom Control Library?

I'm trying to encapsulate Windows Forms Control (from previous version of project) to WPF Custom Control Library. Because I want to use it in future Wpf applications (like drag&drop from toolbox ...
0
votes
1answer
23 views

How to set:data Gride height and Width

How to set height and width of Data Gide control of WPF to Auto programatically.
1
vote
1answer
186 views

.NET BarCode Reader in WPF

I am trying to see whether its possible to read the barcode in WPF Applications without using any 3rd party tools. We built an application using WPF and they are not willing to buy any third party ...
1
vote
1answer
32 views

Validation.ErrorTemplate size

I've got the following control template which I use as a Validation.ErrorTemplate for TextBoxes:- <ControlTemplate x:Key="ControlValidationErrorTemplate"> <DockPanel ...
0
votes
1answer
55 views

How to apply nested Styles from ResourceDictionary in WPF?

I use a DataGrid (WPF 4.0) control. The style for it is placed in a ResourceDictionary and contains a nested Style element: <Style x:Key="MyDataGridStyle" TargetType="{x:Type ...
1
vote
0answers
33 views

Want to provide Resize for my Usercontrol. Can somebody please tell me if i have to provide some additional tags in the Usercontrol?

This is my code. I have Used a UserControl and i have used a grid to hold all the UI/UC. this form is not resizable. I want to provide resizable options to the user apart from maximize options. I ...
0
votes
1answer
46 views

GUI: user drawn controls vs system controls

I'm studying UI on the .NET platform and today I stumbled upon this question: What are the pro and cons of using user drawn (using splines or basic shapes like rectangles or squares) controls instead ...
1
vote
1answer
38 views

How to Customize window title Extended,Gradient

Window x:Class="WPF_UI.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Mian ...
0
votes
1answer
36 views

WPF TabControl - In need of a default message before tabs load

I have a WPF TabControl who's TabItems are MEF'd in at run time. However, they are MEF'd in only when a certain item in a left-hand treeview is selected. What I'd like to do is display a centered ...
0
votes
2answers
72 views

Determining window closing sender in WPF Window

I want to perform a particular action when user cancels my dialog by clicking the close button (red X button) and not when the form is closing because of some other operation. How i can determine ...
0
votes
0answers
36 views

Telerik wpf control style editing - Objects and Timeline empty

I am trying to make a custom style to RadToggleButton. According to the telerik documentation I should open up the project in expression blend and edit the default template. However when I open up the ...
0
votes
2answers
77 views

How do I select a row in a WPF Grid control?

I'm using a Grid to display data which is not known until run-time. The XAML for my Grid is very simple since I add controls to it programmatically. I need the grid to be flexible. I would like ...
1
vote
1answer
83 views

Create hollow border/square wpf

I want to create a control in WPF/Silverlight. This control is rectangle/border which is hollow from the center. My intention is to gray out everything else except for a squared area within the ...
0
votes
1answer
207 views

WPF ListBox - Detect Scrollbar Up/Down Button click

I'm using a listbox to display a list of numeric values where the selected value get applied to an object and is saved. I had the idea to set the height on on the listbox to be just enough to display ...
0
votes
0answers
37 views

Where to find in-depth information about custom activity designer development? [closed]

We are starting to develop a big custom activity library where a lot of activities will need a special designer that does not fit into the usual "box" (border with titlebar, provided by the default ...
1
vote
1answer
164 views

The communication object, System.ServiceModel.Channels.ServiceChannel, cannot be used for communication because it is in the Faulted state

error occur: "The communication object, System.ServiceModel.Channels.ServiceChannel, cannot be used for communication because it is in the Faulted state." that error occured due to app.config? ...
0
votes
0answers
48 views

Accessing parent html from user control

I have used myDoc = (HTMLDocument)this.Site.GetService(typeof(HTMLDocument)); string outerHTML = myDoc.Body.Parent.OuterHTML.ToString(); to access the html content of the document hosting the ...
1
vote
0answers
22 views

GetPositionAtOffset equivalent for text only?

Is there a pretty solution of a GetPositionAtOffset() equivalent which only counts text insertion positions instead of all symbols? Motivation example in C#: TextRange GetRange(RichTextBox rtb, ...
0
votes
1answer
100 views

Showing only part of Canvas in WPF C#

I have Canvas in WPF project defined to be 1000 x 3000px. Now i'm using Clip method from point (0,1000) to (1000, 2000). It will be middle of that canvas. Now i want to show it in a ScrollViewer, but ...
0
votes
1answer
222 views

WPF treeview item background over entire row

i am writing one app and i need to set background under entire row by items. I found some inspiration in here but i cannot get idea how to get Border background value in template (the problem is a bit ...
3
votes
1answer
113 views

WCF Client error: “The address of the security token issuer is not specified”

error occur: "The address of the security token issuer is not specified. An explicit issuer address must be specified in the binding for target 'net.tcp://localhost:5054/player' or the local issuer ...
0
votes
3answers
220 views

Change color of toggle (TreeView) in wpf programmatically

I got a problem with changing color of Toggle in TreeView programmatically. I defined in ResourceDictionary SolidColorBrush with: <SolidColorBrush x:Key="FillBrush" Color="#000000" /> i ...
0
votes
1answer
103 views

How to get the Document's Title from a Web Browser control in wpf

I have created a Web Browser control in a TabControl.I want to set the Header of the TabItem to the Document's title of the Web Browser. I used the following code in the Navigated Event of the ...
0
votes
0answers
36 views

BackGroundWorker is not working properly

I am using System.ComponentModel.BackGroundWorker in my WPF application. So, what i am doing is as fllowing " I have a file browser control and two buttons called import and cancel on a wpf dialog ...
0
votes
0answers
38 views

Changing ScrollBar thumb to jump to click position

I'm building a WPF application designed run on a very large touch screen and user testing has determined that I need to modify the standard ScrollBar behavior. When a user clicks the background of ...
0
votes
0answers
58 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 ...
0
votes
1answer
59 views

Pin and Unpin Panes in WPF

How to create a WPF Application, something like Pin and Unpin panes. Example :- Properties Explorer,Solution Explorer , Server Explorer in Visual Studio 2010 Etc Please Guide me on which Layout Panel ...

1 2 3 4 5 63