Table of Contents

Class ViewMixins

Namespace
ReactiveUI
Assembly
ReactiveUI.dll

Default methods for ILayoutViewHost.

public static class ViewMixins : Object
Inheritance
ViewMixins

Methods

GetViewHost(View)

Gets the ViewHost associated with a given View by accessing the Tag of the View.

public static ILayoutViewHost? GetViewHost(this View item)

Parameters

item View

The view.

Returns

ILayoutViewHost

The view host.

GetViewHost<T>(View)

Gets the ViewHost associated with a given View by accessing the Tag of the View.

public static T GetViewHost<T>(this View item) where T : ILayoutViewHost

Parameters

item View

The view.

Returns

T

The view host.

Type Parameters

T

The layout view host type.