IComponentConnector Interface

Definition

Provides markup compile and tools support for named XAML elements and for attaching event handlers to them.

public interface class IComponentConnector
public interface IComponentConnector
type IComponentConnector = interface
Public Interface IComponentConnector
Derived

Remarks

This interface is used internally by Baml2006Reader.

Implementations of InitializeComponent are widely observable as part of the infrastructure provided by frameworks or technologies that use XAML combined with application and programming models. For example, whenever you look at the generated classes for XAML root elements in WPF pages and applications, you will see InitializeComponent defined in the output. That method also exists in the compiled assembly and plays a role in the WPF application model of loading the XAML UI content at XAML parse time. For more information on the WPF integration of the InitializeComponent concept, see Application Management Overview or Code-Behind and XAML in WPF.

In previous versions of the .NET Framework, this interface existed in the WPF-specific assembly WindowsBase. In .NET Framework 4, IComponentConnector is in the System.Xaml assembly. . For more information, see Types Migrated from WPF to System.Xaml.

Tip

A failure to resolve IComponentConnector during an attempted build is often an indicator that you have not updated your WPF project correctly. In particular, the project is not referencing the System.Xaml assembly for a project that targets .NET Framework 4. Try running the devenv /upgrade option for the project, or otherwise adjust the project assembly references so that System.Xaml is in the reference list.

Methods

Connect(Int32, Object)

Attaches events and names to compiled content.

InitializeComponent()

Loads the compiled page of a component.

Applies to