# Get the view of a given view model

There are cases where given a running ViewModel we need to retrieve an instance of the currently associated View, the runtime conventions object exposes a convention to achieve that:

```csharp
class MyViewModel : AbstractViewModel
{
    public MyViewModel(  IConventionsHandler conventions )
    {
        var view = conventions.GetViewOfViewModel( this );
    }
}
```

Since the conventions are handled by the underlying Inversion of Control subsystem we can access the conventions using a dependency, as in the above sample.

#### Notes:

if we take a look at the signature (Func\<Object, DependencyObject>) of the above convention we notice that the “in” parameter is an Object and is not constrained to be an AbstractViewModel, this is in line with the fact that for the Radical toolkit a ViewModel is not required to be an AbstractViewModel, but if you need to use the above convention or the UI Composition system be aware that if the ViewModel is not an AbstractViewModel you end up with 2 options:

* implement on your view model the IViewModel interface;
* or replace the AttachViewToViewModel convention that is responsible to reverse link the View to the ViewModel;


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.radicalframework.com/how-to/get-view-of-view-model.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
