Tagged Questions
0
votes
0answers
11 views
Methods necessary to override when creating the custom control derived from FrameworkElement
I want to create a custom control which is derived from FrameworkElement, here i want to know what are all the methods i would need to override for this?
Any one please provide suggestion to me?
0
votes
0answers
22 views
Cursor display on WPF TextBox without focus
I have two text box on my screen Name and description.
When focus on Name and now I click on description textbox Cursor is still visible on Name text box but it is not blinking and it also visble on ...
0
votes
1answer
36 views
How to improve performance of WPF Grid control (.NET 4.0/4.5)?
Definition: Having 2D-array of string (about 10 columns, 1,600 rows, fixed length of 7-char) serving as a data source for WPF .NET 4.0 Grid control, the following code snippet has been used in order ...
0
votes
0answers
37 views
WPF C# datagrid fix view row (fix scroll)
i am working on WPF datagrid and want to fix view after insert row at top, whenever row insert at top view scroll down by 1 row, i am using following code
int i = 0;
DataTable dt = null;
...
1
vote
1answer
36 views
TextBox template padding issue
I am trying to re-template a TextBox to have two borders with padding in-between; however, even when I explicitly set the padding on the PART_ContentHost to zero, the padding for the control is always ...
-1
votes
2answers
62 views
Insert hyphen automatically after every 4 characters in a TextBox
I want to implement some thing that when a user enters 4 characters then a hyphen should be added to the text and then again user enter 4 characters and then again hypen should added automatically in ...
2
votes
2answers
124 views
DataGrid that uses binding to create table with comboboxes
I have a DataGrid that should have a text column for the first column, and then the succeeding columns should be combo boxes with a different set of items for each column.
The problem is that the ...
0
votes
1answer
35 views
How to properly handle focus
Lets say I have next layout:
Window
UserControl
UserControl
UserControl
Button
GridControl
GridCell
And lets say that GridCell currently has Keyboard focus. If ...
0
votes
0answers
19 views
Moving borders according to expander
I have two borders in the following form.
<border x:name="brdr1"............>
<grid>
<label..............>
<expander x:name="expdr1" ........>
.........
...
0
votes
1answer
69 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
1answer
130 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
1answer
49 views
XamGrid doesn't allow to select empty text
I am using Infrgistics XamGrid [InfragisticsWPF4.Controls.Grids.XamGrid.v12.1.dll (12.1.20121.1010)]. I have a situation where user cannot filter to select only empty text. Filter works fine in cases ...
0
votes
3answers
68 views
Want to run Progess-Bar continuously in UI till we receive the service response
I want to assign a new thread to a continuous Progress-bar in WPF application, so that it will run continuously after clicking on UI button till I receive the service response.
I did a code like ...
0
votes
0answers
122 views
WPF: How to define a Xaml resource (locally) if it has not already been defined elsewhere?
I am writing Style Setters for custom WPF controls and would like to set values to resources (such as Brushes) that would ideally (read "hopefully") be defined at an application-level (so that ...
0
votes
1answer
56 views
WPF listbox groupping by substrings
My object has property that stores more strings separated by separator.
I want to display list of such objects in WPF listbox with grouping enabled. What I need is to have groups according to ...
0
votes
1answer
29 views
The application requires that assembly Microsoft.HTMLTrans.Interface version be installed first in the global assembly cache
I have created a WPF application. I have used the microsoft.sharepoint dll to get some data from lists.
I created a deployment package . When i run the setup i get the following error
unable to ...
0
votes
0answers
48 views
cannot append a row to datagrid WPF
I scratched my head a lot and worked also, but still not able to add a row to a datagrid. I mean i cannot append, when ever i am adding a new row the previous data is going away and only tht one row ...
0
votes
1answer
92 views
WPF web browser control takes to long to load
Hi I am developing a WPF application.
The web browser control takes a long time to load the page.
Is there a way to display some text before the page loads . The .Documenttext is not available is ...
1
vote
1answer
67 views
VISUAL C# - WPF Page Name
in short, I need to be able to automatically create a number "tot" of pages in my project, each page should have a different name, and for this reason, I need a method that gives me the opportunity to ...
0
votes
1answer
70 views
Dynamic Button Width using WPF
I am trying to create a control that performs several animations on mouse over event of a button. The first functionality is that, the button should take padding=2 and occupy the entire columns. I am ...
0
votes
1answer
45 views
Border Styling applied to all the child elements recursively
I am new to WPF and need your help in resolving my styling issue.
I have applied border styling to GRID as below
<Border CornerRadius="5" BorderBrush="Gainsboro" BorderThickness="1,1,0,0" ...
1
vote
0answers
76 views
How to handle connection status changed in WPF?
In my WPF application I am having a user control in main window and a Frame(Navigation frame) and my first page is menu page and I will navigate from menu page to other page using navigation service ...
0
votes
2answers
96 views
What is a good way to base the enabled state of the OK button in a dialog on valid control entries
Even if I associate the button with a class derived from ICommand, I am still left with figuring out how the button should trigger the CanExecute method and refresh its enabled state. I do know about ...
1
vote
1answer
304 views
Manipulation events in a ListBox in wpf4 is never raised
I have a ListBox control defined within MainWindow and its IsManipulationEnabled property is set to true. I have the manipulation events (OnManipulationStarting, OnManipulationInertiaStarting and ...
0
votes
1answer
301 views
How do you add a dependency property with a discrete set of string values?
Many properties in standard WPF elements support a small discrete set of values that can be specified as strings when the elements are created in XAML. For example, StackPanel's Orientation property ...
1
vote
1answer
342 views
Tying user control property to named parent property
I want to set a user control property to the value of a property in a parent control. For example, let's say my main window control has some initial configuration data. Currently I use the following ...
2
votes
2answers
286 views
Passing large sets of data into user controls
Since UserControls in WPF have to have parameterless constructors, what is the correct way for supplying them with fairly complex data that is needed "near" the time of construction. I have tried ...
0
votes
2answers
658 views
How do you change TemplateBindings to Bindings in a button's control template, without repeating the whole control template
I want to change the background color of a button in its normal, moused-over and pressed states to various shades of green. I am forced to add the following grotesquely verbose Button.Template to my ...
6
votes
1answer
5k views
Overriding button background in WPF on Aero
So, the desire is simple, change a button's background to LightGreen, Green when the mouse cursor hovers over it and DarkGreen when it is pressed. The following XAML is my first attempt:
<Window ...
0
votes
1answer
1k views
Changing dynamically created button's background in WPF
I have the following code to dynamically create and add a button to a panel:
StackPanel topPanel=...;
Button button=new Button();
button.Content="New Button "+topPanel.Children.Count;
// Set ...
0
votes
1answer
235 views
Fitting an Expander controls' content to a resolution independent window
I have a fullscreen WPF application that has to 'adapt' to different screen resolutions, meaning that the layout is mostly defined by setting VerticalAlignment and HorizontaAlignment appropriately and ...

