4
votes
1answer
25 views
Showing multiple headers in one column with DataGrid
I would like to have more than one property in a column like the following:
Now, it's easy to create a cell template to show more than one property, but how would one go about creating a header ...
0
votes
0answers
13 views
WPF Set Out of the Box Property to Inheritable
Is it possible to change the inheritance settings for a WPF property? Ideally, I would set ToolTipService.ShowDelay at the Window or UserControl level and everything in the visual tree would inherit ...
-2
votes
0answers
22 views
WPF ,XAML NameSpace Does not Read the Class in VS2010 C#
I am Working on Windows Phone App ,Visual Studio 2010
I want to do databinding and i am stuck at an error
Error is
"The Type local:AdderClass can not be found "
in the line
in XAML code
i have ...
0
votes
0answers
16 views
Why does my custom template CalendarDayButton not listen to PropertyChanged?
I've created a custom control based on Calendar that also implements. It's functionality is that it can color code days based on if that day is present in a Observable Collection.
I've created a ...
0
votes
0answers
22 views
Min Height for a Row which can be collapsed in some scenario
I have a grid with multiple rows. out of which some of the rows can be collapsed in some particular scenario. Is there a way to define min height for these collapsible rows so that there height ...
1
vote
1answer
48 views
Leftmouseclick on stackpanel
I have a stackpanel with image and button in it. I want to fire event when user clicks on a button in stackPanel. My code in xaml is
<StackPanel x:Uid="TemperatureMonitor" ...
0
votes
1answer
30 views
Binding with the inner DataGrid in wpf
I am having problem to bind with an inner DataGrid. The binding works with the DataGrid "Account" but not with "Record". I am using DataGrid.RowDetailsTemplate for the second Datagrid
<Grid>
...
0
votes
2answers
32 views
Property change on one control to refresh converter on another?
I have a page when a user can enter their weight. The data is always store as lbs because most of my calculations in the app are base on lbs. But, visually the user can enter kg, lbs and stone.
So ...
0
votes
1answer
19 views
WPF Calendar loses blackout dates when enabled / disabled
I have a calendar control that I disable dates on using Blackout dates. The calendar control is bound to another property that allows a user to enable or disable the calendar.
The Blackout dates ...
0
votes
2answers
18 views
Styling Inner Elements in XAML Style
i have this code
<HyperlinkButton Style="{StaticResource HyperLink-Navi-Container}">
<HyperlinkButton.Content>
<TextBlock Text="Sample Text"></TextBlock>
...
0
votes
0answers
19 views
WPF - Accessing GDPicture object in a viewmodel
I am using MVVM and somehow I should have access to GDpicture object in my viewmodel.
here is the XAML
<WindowsFormsHost x:Name="WindowsFormsHost1" Height="991" Width="1583">
...
0
votes
1answer
30 views
Default styles do not apply to subclasses
I have a weird scenario involving overriding default styles in WPF and having them apply to subclasses. Is this not possible? For example, I have the following code:
<Window ...
1
vote
1answer
49 views
Xaml Parse Exception WPF
I have encountered a problem with my Whack a Mole Game:
XamlParseException was unhandled
'The invocation of the constructor on type 'WhackaMoleReal.MainWindow' that matches the specified ...
0
votes
1answer
19 views
WPF override a text on canvas + zooming dont work well
Problem 1:
How can I override a written text without delete the whole canvas content ?
Can I do that over C# ? Without adding elements in the XAML code ?
Problem 2:
I intergrated a zoom function but ...
1
vote
1answer
44 views
Path from Resources as Content of Button
I would like to set Button's Content to Path defined in Resources. So I created UserControl, defined Path, two Brushes and button Style in resources... and everything was ok.
<UserControl ...>
...
2
votes
1answer
40 views
WPF Control Templating - How do I create a custom property?
I'm currently building a XAML UserControl library using Blend.
I've created a template for my custom WPF slider type. What I'd like to be able to do now is add a custom brush property for the control ...
0
votes
2answers
34 views
why this style is not working in wpf
I have a style for button as follow:
<Style TargetType="Button" x:Key="BlackButton">
<Setter Property="Background" Value="Black"/>
<Setter Property="Template">
...
2
votes
1answer
27 views
How to reference a control template from a standard control using bindings?
I am building a custom control that inherits from the standard System.Windows.Controls.Calendar control. I'm following this article on Code Project. I also want to make the CalendarItem sub object ...
1
vote
1answer
16 views
How to set a default color to the Pie slices in WPF Pie chart
I am using WPF Pie chart with Labels using the article from Zag studio.This chart refreshes for new values every 1 min. It works fine, but why the color of the pie slices changes for every refresh? ...
1
vote
1answer
28 views
WPF: How to draw arc with radius and start and stop angle
If I have the following four properties in my DataContext of my Canvas element
Point Center
double Radius
double StartAngle
double EndAngle
can I draw an arc without any extra code behind?
0
votes
0answers
29 views
How to set focus to a bound ListboxItem by pressing it's child element?
I am developping a small WPF application which consist mostly in displaying ObservableCollection<> in others ObservableCollection<>, and so on.
Here is a code example of what my ...
0
votes
0answers
29 views
AutoCompleteBox randomly sets Text Value
I'm using an AutoCompleteBox in a DataGrid for order line items. It works great except for one thing: the text typed into the acb moves unpredictably to other rows in the DataGrid, seemingly at ...
0
votes
2answers
37 views
DataTemplate not being applied
I have a window in which I want to display dynamic content based on a datatemplate.
The XAML looks roughly like this:
<Window x:Class="Report.ControlLibrary.ReportHost"
...
0
votes
1answer
22 views
Custom control not showing
I have created a simple custom control to imitate Modern UI Tiles. The project builds without any problem, but the custom control doesn't show up on the window at all. It is pretty simple, and even ...
1
vote
2answers
40 views
WPF User Control with Tab Control
I'm attempting to create a user control that houses a tab control.
My question is, how do I expose the tab control through the user control so we can add tabs?
The entire control will house three ...
0
votes
0answers
28 views
First cell in DataGrid doesn't get selected in the DataGridRow
When the user presses "Search" (Sök) the list is populated. When the search is finished the first row is selected via the Trigger "IsEnabled", the problem is that the first cell isn't (see pic).
...
0
votes
1answer
37 views
BorderThickness doesn't work
I'm trying to create style for button in XAML, here is my code:
<Window.Resources>
<Style x:Key="buttons" TargetType="Control">
<Setter Property="Background">
...
0
votes
2answers
38 views
Binding Collection-ListBox-DataGrid
i have two Database Tables: Account and AccountRecords. They are connected with a Foreign Key because every Account contains multiple Records. I use ObservableCollection to bind the ListBox with the ...
0
votes
2answers
35 views
How to get the comboBox to display a portion of the binded data
I currently have a comboBox which is bound to DataSet from a database. The problem with it is that when i want to display the dataSet using the comboBox, it takes about 8 seconds for it to load the ...
0
votes
2answers
27 views
Object of type 'System.Windows.Data.Binding' cannot be converted to type 'System.String'
Why am I getting the exception when I am trying to bind a String Property itself.
I XAML if I write:
<telerik:RadGridView.GroupDescriptors>
<telerikData:GroupDescriptor ...
0
votes
1answer
24 views
Horizontal GridSplitter does not resize content
I've got a GridSplitter defined in the following way:
<Grid x:Name="grdMailContent"
Grid.Row="4"
Grid.Column="0">
<Grid>
...
0
votes
0answers
18 views
XAML timer-triggered binding update
Suppose you have textbox whose value is time-dependent, like say, the the time passed since the application was started. Is it possible to express a solution in pure XAML which automagically ...
0
votes
0answers
22 views
WPF Problems with Custom Control
I have a Custom Control in WPF
public class MyClass: Control, INotifyPropertyChanged
{
private Boolean _hasData;
public Boolean HasData
{
get { return _hasData};
set
...
1
vote
1answer
29 views
Advanced templating of DataGrid specific to the data in hand
Let's say I have an object that is like:
Id = 123456789
Date = 01.01.2013
CurrentItems = 20
TotalItems = 200
A = 25
I would like to create a DataGrid that is styled similar to the following image:
...
2
votes
2answers
34 views
How to bind to a StaticResource with a Converter?
I want to use a Converter to change the value of a StaticResource before assigning it to a property. Is there a way to simulate a Binding that will just set the value of the StaticResource after ...
0
votes
2answers
24 views
Binding in DataTemplate/ItemTemplate
I have a ComboBox whose ItemSource is a ListCollectionView of MyClass. The ComboBox uses the following ItemTemplate:
<Style x:Key="StyleComboBoxGroups" BasedOn="{StaticResource BaseComboBox}" ...
0
votes
1answer
31 views
Getting Parent Element Width for Converter
I'm trying to get the entire width for a current cell so I can draw a rectangle with a width of a certain percentage of that cell. I wasn't able to bind to set the Width property more than once, as ...
0
votes
1answer
40 views
Missing a Using Directive or an Assembly Reference WPF & XAML [closed]
I am having a problem where, INotifyPropertyChanged, PropertyChanagedEventHandler, and PropertyEventChangedArgs, can not be found:
"The type or namespace name 'PropertyChangedEventArgs' could not ...
0
votes
4answers
40 views
Give TextBlock Default Value if result returns null
Hello I am trying to give a default value to a textblock if the results returned are null
Here is what I am trying!
All that returns is the String Format I set!
<TextBlock ...
0
votes
1answer
31 views
How to Validate TextEdit to accept Website address,Phone,Email formats only in WPF from .cs file?
I have a TextEdit on form. which contains website address Text Field, Phone(US), email. I want to validate all these from .cs file. Please any one can help me?
WPF Markup:
<dxe:TextEdit ...
2
votes
1answer
79 views
+50
Border Margin in Window template doesn't have any effect when used with WindowChrome
I was checking out the WindowChrome class in System.Windows.Shell library (v 3.5.41019.1). When I try to create a Window template, the margin of the Border element in the template seems to have no ...
0
votes
0answers
33 views
How can I add a nested WPF window with a class reference within a root window?
I would like to do something such as the following, but I am getting an error that, "The attribute 'Class' from the XAML namespace is only accepted on the root element." Well, I guess my question is ...
0
votes
1answer
29 views
WPF drop event for empty groupbox
Im trying to implement an empty WPF groupbox as a landing zone for drop event (e.g. Files).
But he following xaml
<GroupBox Header="Drop Files to convert in here" AllowDrop="True" ...
2
votes
0answers
38 views
WPF Disable Window Close and Minimize Button on Tabbing
How can I disable TabStop of minimize, maximize and close button of my Form in WPF?
0
votes
2answers
62 views
Trigger Style on One Column of GridView
My question is similar to WPF Grid - How to apply a style for just one column? but applies to a GridView inside of a ListView
I'm trying to apply a trigger that will change the color of text within a ...
0
votes
0answers
27 views
Add to Command Action From Parent Control
I have a custom control that is a textbox with an embedded button for clearing the textbox. The button is wired to the ApplicationCommands.Delete command with the target as the textbox. This works ...
0
votes
1answer
22 views
Set Grid Column Width to Bound Perctange
I want to display a Rectangle with a dynamic Width based on a bound data source. I originally looked into using a Converter, but wasn't able to bind to the converter parameter to get a read dynamic ...
0
votes
2answers
31 views
How to a implement ListBox ScrollIntoView functionality in a ViewModel
I have a screen with a TextBox in which the user can type a 2-character state code. Below the TextBox is a ListBox containing all 50 state codes. The TextBox is bound to property in the VM, and the ...
0
votes
1answer
24 views
Multiple Alignments inside border
I have the below xaml code. I am trying to align the image and the textblock to the right. The first textblock is displaying correctly, I just want the image and 2nd textblock to dock to the far ...
0
votes
0answers
23 views
How To Get XAML GeometryVisual3D Coordinate On Screem (X, Y) Coordinate In Pixel [duplicate]
I am developing App using WPF with XAML 3D model and Kinect Gesture as the input command to do some animations on the 3D model like rotating.
I have a microwave model that has a door and also a hand ...






