WIP estimate
This commit is contained in:
parent
4d7de134ce
commit
d67c932af2
43 changed files with 816 additions and 94 deletions
32
BookAStar/BookAStar/Views/MarkdownView.cs
Normal file
32
BookAStar/BookAStar/Views/MarkdownView.cs
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Reflection.Emit;
|
||||
using System.Text;
|
||||
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace BookAStar.Views
|
||||
{
|
||||
public partial class MarkdownView : ContentView
|
||||
{
|
||||
private string markdown;
|
||||
|
||||
public string Markdown
|
||||
{
|
||||
get
|
||||
{
|
||||
return markdown;
|
||||
}
|
||||
set { markdown = value; }
|
||||
}
|
||||
|
||||
public MarkdownView() : base()
|
||||
{
|
||||
markdown = "**Hello** _world_";
|
||||
Content = App.PlateformSpecificInstance.CreateMarkdownView(markdown);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue