vote up 3 vote down star

Windows Forms allows you to develop Components, non-visual elements that can have a designer. Built-in components include the BackgroundWorker, Timer, and a lot of ADO .NET objects. It's a nice way to provide easy configuration of a complicated object, and it it enables designer-assisted data binding.

I've been looking at WPF, and it doesn't seem like there's any concept of components. Am I right about this? Is there some method of creating components (or something like a component) that I've missed?

I've accepted Bob's answer because after a lot of research I feel like fancy Adorners are probably the only way to do this.

flag

4 Answers

vote up 5 vote down check

Just from my own observations, it seems like Microsoft is trying to move away from having components and similar things in the GUI. I think WPF tries to limit most of what's in the XAML to strictly GUI things. Data binding I guess would be the only exception. I know I try to keep most everything else in the code-behind or in separate classes or assemblies.

Probably not exactly the answer you wanted, but it's my $0.02.

link|flag
vote up 1 vote down

So far, the only approach I see that makes sense is to make an instance of the class a static resource and configure it from XAML. This works, but it'd be nice if there were something like the WinForms designer component tray that these could live in.

link|flag
vote up 0 vote down

You would need to derive from the FrameworkElement as that is the base class used for those components that need to be placed into the hierarchy but are not visual elements. A visual element would derive from UIElement instead.

link|flag
You are incorrect about this. FrameworkElement derives from UIElement which derives from Visual. That means that FrameworkElement is a visual element. You can actually program right against the visual layer by deriving from Visual or by (more easily) using DrawingVisual. – cplotts Oct 1 '08 at 14:53
vote up 0 vote down

You can put whatever you like inside a resource dictionary, including classes that have no relation what so ever to Wpf.

The following XAML adds the string "Hello" directly into a window (the actual string, not a control that shows the string), you can use the same method to place anything - including classes you write yourself into a XAML file.

<Window  x:Class="MyApp.Window1"
    xmlns:sys="clr-namespace:System;assembly=mscorlib"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    >
<Window.Resources>
    <sys:String x:Key="MyString">Hello</sys:String>
</Window.Resources>
</Window>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.