Click here to Skip to main content
15,994,059 members
Home / Discussions / WPF
   

WPF

 
PinnedHOW TO ANSWER A QUESTION PinPopular
Chris Maunder16-Jul-09 3:09
cofounderChris Maunder16-Jul-09 3:09 
PinnedHow to get an answer to your question PinPopular
Chris Maunder16-Jul-09 3:05
cofounderChris Maunder16-Jul-09 3:05 
Question"Refresh" Behavior Pin
Kevin Marois19-Aug-24 11:20
professionalKevin Marois19-Aug-24 11:20 
Questionbinding textblock to tabitem textblocks Pin
geomeo12329-Jul-24 17:00
geomeo12329-Jul-24 17:00 
Question[WPF] ComboBox with RichTextBox Pin
Member 846740328-Jul-24 6:36
Member 846740328-Jul-24 6:36 
AnswerRe: [WPF] ComboBox with RichTextBox Pin
Member 846740328-Jul-24 6:44
Member 846740328-Jul-24 6:44 
QuestionHow to create and save High Score in my Tetris game in wpf c#? Pin
Member 162860911-Jul-24 1:03
Member 162860911-Jul-24 1:03 
AnswerRe: How to create and save High Score in my Tetris game in wpf c#? Pin
Richard MacCutchan1-Jul-24 1:20
mveRichard MacCutchan1-Jul-24 1:20 
Questionselect text box lines and remove Pin
geomeo12322-Jun-24 16:30
geomeo12322-Jun-24 16:30 
AnswerRe: select text box lines and remove Pin
Richard Deeming23-Jun-24 21:47
mveRichard Deeming23-Jun-24 21:47 
GeneralRe: select text box lines and remove Pin
geomeo12324-Jun-24 7:52
geomeo12324-Jun-24 7:52 
QuestionCustom Control Based On Combobox - Replace Part Of The Combobox Pin
Kevin Marois14-Jun-24 18:27
professionalKevin Marois14-Jun-24 18:27 
AnswerRe: Custom Control Based On Combobox - Replace Part Of The Combobox Pin
Dave Kreskowiak15-Jun-24 5:48
mveDave Kreskowiak15-Jun-24 5:48 
GeneralRe: Custom Control Based On Combobox - Replace Part Of The Combobox Pin
Kevin Marois15-Jun-24 10:13
professionalKevin Marois15-Jun-24 10:13 
I do WPF for a living. I have the Control Development book. In the part about creating custom controls, ALL the xaml from the template is used in the examples.

I want to create subclass of a combox box. I don't need the XAML for the button or the textbox, or any other part except for the content site. If you go look at the XAML in the link I provided, I want to replace this:
<ContentPresenter x:Name="ContentSite"
                          IsHitTestVisible="False"
                          Content="{TemplateBinding SelectionBoxItem}"
                          ContentTemplate="{TemplateBinding SelectionBoxItemTemplate}"
                          ContentTemplateSelector="{TemplateBinding ItemTemplateSelector}"
                          Margin="3,3,23,3"
                          VerticalAlignment="Stretch"
                          HorizontalAlignment="Left">
Something like this
public class MyComboBox : ComboBox
{
    static MyComboBox()
    {
        DefaultStyleKeyProperty.OverrideMetadata(typeof(MyComboBox),
            new FrameworkPropertyMetadata(typeof(MyComboBox)));
    }

    // Add DP's * logic here
}
and
<Style TargetType="{x:Type ctrls:MyComboBox}">

<pre>
<Setter Property="Template">

    <Setter.Value>

        <ControlTemplate TargetType="ComboBox">

        </ControlTemplate>

    </Setter.Value>

</Setter>



If I do this XAML, the ENTIRE template is replaced, so I'd have to recreate the textbox, button, etc.

What I'm asking is, instead of replacing the ENTIRE TEMPLATE, can I somehow replace just a small piece of that template?
In theory, theory and practice are the same. But in practice, they never are.”
If it's not broken, fix it until it is.
Everything makes sense in someone's mind.

QuestionInvoke WPF Pin
geomeo1231-Jun-24 15:31
geomeo1231-Jun-24 15:31 
AnswerRe: Invoke WPF Pin
Richard Deeming3-Jun-24 21:38
mveRichard Deeming3-Jun-24 21:38 
GeneralRe: Invoke WPF Pin
geomeo1234-Jun-24 17:54
geomeo1234-Jun-24 17:54 
QuestionICommand Wpf form load properties? Pin
geomeo12330-May-24 14:11
geomeo12330-May-24 14:11 
AnswerRe: ICommand Wpf form load properties? Pin
Richard Deeming30-May-24 21:26
mveRichard Deeming30-May-24 21:26 
GeneralRe: ICommand Wpf form load properties? Pin
geomeo12331-May-24 16:10
geomeo12331-May-24 16:10 
GeneralRe: ICommand Wpf form load properties? Pin
Richard Deeming3-Jun-24 21:35
mveRichard Deeming3-Jun-24 21:35 
GeneralRe: ICommand Wpf form load properties? Pin
Richard Deeming3-Jun-24 22:57
mveRichard Deeming3-Jun-24 22:57 
GeneralRe: ICommand Wpf form load properties? Pin
geomeo1234-Jun-24 17:46
geomeo1234-Jun-24 17:46 
QuestionWrapPanel / ItemsControl Problem Pin
Kevin Marois29-May-24 16:15
professionalKevin Marois29-May-24 16:15 
AnswerRe: WrapPanel / ItemsControl Problem Pin
Richard Deeming29-May-24 21:41
mveRichard Deeming29-May-24 21:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.