This is content converted from Markdown!
Here's a JSON sample:
{
"foo": "bar"
}
<html> | |
<head> | |
<style> | |
h1 { | |
font-family: Calibri; | |
} | |
</style> | |
</head> | |
<body> | |
<h1>Hello World!</h1> |
public interface IViewModel : INotifyPropertyChanged | |
{ | |
} | |
public class MvvmComponentBase : ComponentBase | |
{ | |
private IViewModel _viewModel; | |
public IViewModel ViewModel | |
{ |