Ooui-tws-port/PlatformSamples/AspNetCoreMvc/Controllers/HomeController.cs

53 lines
1.4 KiB
C#
Raw Normal View History

2017-11-10 02:54:50 +00:00
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
2017-11-10 03:34:37 +00:00
2017-11-10 02:54:50 +00:00
using AspNetCoreMvc.Models;
2017-11-10 03:34:37 +00:00
using Ooui;
using Ooui.AspNetCore;
2017-11-10 02:54:50 +00:00
namespace AspNetCoreMvc.Controllers
{
public class HomeController : Controller
{
public IActionResult Index()
{
2017-11-10 05:06:07 +00:00
var count = 0;
var head = new Heading { Text = "Ooui!" };
var label = new Label { Text = "0" };
var btn = new Button { Text = "Increase" };
btn.Clicked += (sender, e) => {
count++;
label.Text = count.ToString ();
};
var div = new Div ();
div.AppendChild (head);
div.AppendChild (label);
div.AppendChild (btn);
return new ElementResult (div);
2017-11-10 02:54:50 +00:00
}
public IActionResult About()
{
ViewData["Message"] = "Your application description page.";
return View();
}
public IActionResult Contact()
{
ViewData["Message"] = "Your contact page.";
return View();
}
public IActionResult Error()
{
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
}
}
}