mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-04 05:34:51 +00:00
26 lines
648 B
Plaintext
26 lines
648 B
Plaintext
@model string
|
|
@{
|
|
Layout = null;
|
|
}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width" />
|
|
<title>ElectronHostHook Sample</title>
|
|
<style>
|
|
body { font-family: sans-serif; padding: 20px; }
|
|
.result { padding: 10px; background-color: #f0f0f0; border: 1px solid #ccc; margin-top: 10px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>ElectronHostHook Sample</h1>
|
|
<p>This sample demonstrates bidirectional communication between C# and the Electron Host process.</p>
|
|
|
|
<div class="result">
|
|
<strong>Result:</strong> @Model
|
|
</div>
|
|
</body>
|
|
</html>
|