The ControlTemplate allows you to specify the visual structure of a control. The control author can define the default ControlTemplate and the application author can override the ControlTemplate to reconstruct the visual structure of the control.

learn more… | top users | synonyms

0
votes
1answer
125 views

Reduce Margin of Button when the button is focussed

I have a scenario where I want to reduce the margin of a Button control when it receives focus. This is because because I wan't to increase the border property of that Button control and at the same ...
0
votes
1answer
189 views

Converting WPF xaml to Silverlight xaml

I've succeeded to convert almost all of it besides one thing. This is the problematic section - <ContentPresenter Margin="2,2,2,2" x:Name="PART_SelectedContentHost" ...
0
votes
0answers
340 views

Style for tabcontrol in silverlight to look like outlook navigation bar [closed]

I have a TabControl and I want to give it a style so it will look like outlook navigation bar. I do want to use tab control and not a stack panel or something, since it implement for free the ...
1
vote
1answer
207 views

How to create a custom control with INamingContainer?

I am trying the following: [PersistenceMode(PersistenceMode.InnerProperty)] [TemplateContainer(typeof(TemplateContainer))] public virtual ITemplate LayoutTemplate { get; set; } protected void ...
0
votes
1answer
1k views

How to change the color of the CheckMark in WPF CheckBox control?

I have a custom template checkbox that I am implementing using a viewbox (using a viewbox to allow for simple scaling), and I can't figure out how to change out what is displayed when the checkbox is ...
1
vote
2answers
230 views

WPF does not align path properly at run time

I have a 16x16 vector drawn up in Expression Design that I imported in to Blend and used in a control template. Here's the XAML: <ControlTemplate x:Key="CircularButtonTemplate" TargetType="{x:Type ...
0
votes
2answers
254 views

Acces Textblock Text inside a ButtonStyle from codebehind

How to access the tbRegistrationBtn.text property from code behind from a custom made style? My button is being created dynamically from codebehind and gets added to the parent control (stackpanel): ...
0
votes
1answer
431 views

Display Textblocks with values inside charts

I'm using datavisualization for silverlight 5. and the Stacked100BarSeries. I want the count of each group to be displayed in front of the color, like I demonstrated in the image below. By default ...
0
votes
1answer
63 views

How to make two independent instance of a ControlTemplate In a window?

i have a controltemplate with a textbox and a button,the button open a sub form to select something and show selected item in the textbox,like this: <Window.Resources> ...
2
votes
1answer
292 views

RowStyleSelector Not Called

I'm having difficulty getting a RowStyleSelector to work with a WPF DataGrid. In my resources, I have <loc:DetailsRowStyleSelector x:Key="detailsRowStyleSelector" AddRowStyle="{StaticResource ...
0
votes
3answers
259 views

Silverlight Change Content Based on Control CheckState (Toggle multiple ContentPresenters)

I would like to change the content of a control based on its current CheckState (checked, unchecked, indeterminate). If possible I would like the solution to use only XAML and require no code behind. ...
0
votes
1answer
271 views

Giving a button in a textbox functionality, without using a custom control but overiding the textbox template

I implemented a button into the textbox overriding the template with the code below: <Style x:Key="{x:Type TextBox}" TargetType="{x:Type TextBoxBase}"> <Setter Property="Template"> ...
0
votes
2answers
167 views

Extending a subelement within a ControlTemplate

I’m trying to extend an Expander’s header (the ToggleButton part) to allow for some more custom features. Being rather new to extending WPF controls using ControlTemplates, I have already accepted by ...
0
votes
1answer
458 views

Is template binding to a Geometry possible

I currently have a custom Button control which displays a DrawingImage set on the control via a dependency property of type ControlTemplate. I have been attempting to move the DrawingImage into the ...
1
vote
1answer
287 views

Silverlight tab header in the left buttom

I used TabStripPlacement="Left" and it made the header in the left side, but I also want them to be in the bottom, How do I do that ? XAML: <Grid x:Name="LayoutRoot" Background="White"> ...
1
vote
2answers
198 views

how to changeCheckBox ControlTemplate to another shape while keeping the behaviour of “Checked” and “Unchecked” Visible?

I need to make a CheckBox to look like a "(" shape instead of it's nomal square shape , the "(" shape should have some space inside it so that the user would observe the difference when checking and ...
4
votes
2answers
846 views

Why is x:key required on ControlTemplate in the ResourceDictionary

Consider the following XAML file: <Window x:Class="ExpressionVisualizer.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
0
votes
1answer
724 views

Defining own ChildWindow with BusyIndicator

I'm trying to create my own ChildWindow whith BusyIndicator. This ChildWindow will be a base class for my other child windows. I started from creating a class which inherits from ChildWindow and I ...
1
vote
1answer
259 views

erriding the selected background color for a themed tabitem

I'm trying to do something which I'd think would be pretty simple, but is turning out to be rather complicated. I'm working with a TabControl that has already been styled by a theme in an included ...
0
votes
1answer
279 views

How to reuse Menu and Toolbar in different WPF UserControls with adding new buttons?

I'm trying to port current WinForms app to WPF and need help with building WPF class structure. Currently in WinForms, I have one base class (with Menu, Toolbar, Grid and Context menu) and several ...
0
votes
1answer
920 views

When to use TemplateBinding and TemplateParent in WPF

I have a confusion over TemplateBinding and TemplatedParent. I have gone through this link also WPF TemplateBinding vs RelativeSource TemplatedParent But my doubt is when to use TemplateBinding and ...
-1
votes
2answers
124 views

Please teach me how to use ControlTemplate properly? (someone delete please)

Ok, I think I am pretty noob on using ControlTemplate lol... All I want is to template my every UserControl so every UserControl will have Delete, Save, Cancel buttons. So now I am writting some ...
3
votes
2answers
439 views

Name scope issues due to binding to event that gets fired before template layout

Based on some standard web searching, I have narrowed down my problem to this: I believe the event that fires my storyboard gets invoked prior to the template being expanded. Thus, names are ...
0
votes
1answer
236 views

Changing source of image inside template

I have an button in my Silverlight application and a Tamplate for it. There is an service, which provides background for that button, depending on some data etc. Button has 2 states, so service ...
0
votes
1answer
269 views

ListView DisplayMemberPath Template Bug?

I am wondering if anyone know something about this issue. It seems like the default template provided here for ListViewItem does not support DisplayMemberPath of ListView. Example <ListView ...
1
vote
2answers
653 views

UserControl Within Template of another UserControl Loses values on postback

This may be the really wrong way of doing this and so if it is please let me know!! I have a user control called ucDropDownList.ascx. It basically is a drop down with a button besides it. When the ...
0
votes
1answer
343 views

Why can't I set a data template insdie a style but control template can?

Why doen'st this work: <Style TargetType="s:Substance"> <Setter Property="Template"> <Setter.Value> <DataTemplate> <StackPanel> ...
0
votes
1answer
241 views

How do I access an inner element of a ControlTemplate of Window.Resources?

This question has been asked many times all over the place, but the solutions are either bad practice and not advised, or not generic to the problem. Maybe this thread can fix that! I have ...
0
votes
1answer
343 views

Change ControlTemplate of a Style in WPF

MobileApp.Get().Resources.MergedDictionaries.Clear(); Uri uri = new Uri("/Resources/NightModeButton.xaml", UriKind.Relative); ResourceDictionary resDict = Application.LoadComponent(uri) as ...
6
votes
1answer
2k views

MVC 4 Custom controller templates

To start off, I'm using Asp.Net MVC 4, and I've modified my solution to contain the CodeTemplates folder by following this tutorial. (I think my issue might be MVC related?) I've replaced the code ...
0
votes
1answer
87 views

Bind label in ControlTemplate to Window title

For a new application I created a custom ControlTemplate for a window so that all windows have the same look and feel. As I set the property WindowStyle to none and AllowsTransparency to true, I ...
3
votes
3answers
3k views

ControlTemplate with DataTrigger Vs. DataTemplate with DataTemplateSelector

I have a generic control which displays an editor based on the type property inside a ViewModel. Currently it's implemented using Control, ControlTemplate and DataTriggers like this - <Control ...
0
votes
1answer
247 views

Button with custom ControlTemplate sometimes misses clicks

My Button with a custom ControlTemplate does not respond to every click. I have no idea why, since it is totally random if the click works or not. ControlTemplate: <ControlTemplate ...
0
votes
1answer
462 views

How to bind to the control's dependency property inside ControlTemplate

I've extended PopupBaseEdit control by adding my own ControlTemplate and a new DependencyProperty PopupText to the extended control. The property PopupText is initialized from the control's consumer. ...
1
vote
1answer
2k views

ToggleButton hover and click behaviour

I created a ContentTemplate and Style for the ToggleButton which looks like the one you know from Microsoft's WebMatrix. However, it's not always possible to click and the hover effect isn't shown ...
0
votes
2answers
545 views

Silverlight Find Control in Data Template

I have the following xaml code: <dxb:BarButtonItem Name="btnPrev" Cursor="Hand" ItemClick="btnPrev_ItemClick"> <dxb:BarButtonItem.ContentTemplate> <DataTemplate> <Image ...
0
votes
1answer
494 views

Datagrid style help XAML

I just learned how to create SampleData and place them into a Datagrid using Blend. I havent found good tutorials on styling Datagrid without using WPFToolkit or Infragistics. I have extracted the ...
3
votes
2answers
107 views

How to make two controls apear as focused?

I'm trying to write a custom control, that have a TextBox and a ListBox inside it's template. But I've found that when I entering a text in the TextBox (so TextBox has focus), ListBox appears as not ...
0
votes
2answers
768 views

Changing foreground color of a TextBox control

Maybe this question is kind of silly but I have no clue how to solve the following (maybe trivial) problem: I just want to change the foreground color of a TextBox control in Silverlight 4 so that in ...
0
votes
1answer
48 views

Container data values aren't coming through using a Templated User Control

I have created a Templated UserControl. I don't want to bloat this post by posting all the code I used to create the control but suffice to say that I am fairly certain that the code is correct. I ...
0
votes
1answer
210 views

InkCanvas control template

I am looking to move the InkPresenter in the InkCanvas to have a ZIndex that is lower than the Children of the InkCanvas. In other words, I want to move the Ink so that it is displayed under the ...
1
vote
0answers
60 views

ResourceDict share & set Template

I will use XAMLReader to load wpf screens. I have some ControlTemplates on Buttons.xaml file and i am keeping it in a common class library (ClassLibrary1). Buttons.xaml is like that: ...
0
votes
1answer
614 views

How do i change background color of silverlight expander?

I want to change background color of the Silverlight expander. It look like as follows. How do I edit following template to set background color to white?? What property of Expander will do I ...
0
votes
1answer
132 views

capture events from lookless control button

I have create a lookless control to be used in a Silverlight 4 project. This control contains a button and I would like to capture the click event. The Generic.xaml contains <Style ...
0
votes
1answer
87 views

How to force datasource to be updated from TemplateControl

I broke my head by solving a simple problem. I have a custom control with filled Template property. The template is a simple Grid with a TextBox inside. This text box is bound to a singleton's proprty ...
2
votes
1answer
427 views

How to reduce width of ComboBox's dropdown arrow in wpf?

I have a wpf/mvvm application. I have a combobox (drop down) in that. I would like to reduce the width of the drop down arrow... I know that I can replace the template...but how do I build an arrow ...
1
vote
0answers
528 views

Custom Datagrid column header

I'm Trying to create a datagrid with custom column headers with images. The problem is that the binding is not working properly. <Window.Resources> <DataTemplate x:Key="header"> ...
3
votes
3answers
342 views

How to adjust width according to the space available for wpf toolbartray

I am using around 10-15 controls inside a WPF ToolbarTray control, Now the issue is while I am changing the resolution the controls present in it is not adjusting according to my need in case of ...
0
votes
0answers
164 views

WPF Calendar DisplayDate BUG

Can anyone explain why the Calendar doesn't show correctly DisplayDate? If I put the DatePicker outside the ContentControl it work perfectly, but somehow it doesn't work when it's wrapped by a ...
0
votes
1answer
350 views

Binding ListBox Items using Templates

I am going crazy trying to figure this out without success. I have a DependencyObject, ("UserObject"). It has a "DataItems" DependecyProperty that is an ObservableCollection. "UserDefiniton" is a ...

1 3 4 5 6 7 13