2025-11-28 00:35:46 +09:00

41 lines
1.6 KiB
HTML

<!--
*************************************************************************
*
* File: Settings.html
*
* Description:
* Gadget settings for the "Debug" Desktop Gadget sample.
* Accepts a file name and file content as user input.
*
* This file is part of the Microsoft Windows SDK Code Samples.
*
* Copyright (C) Microsoft Corporation. All rights reserved.
*
* This source code is intended only as a supplement to Microsoft
* Development Tools and/or on-line documentation. See these other
* materials for detailed information regarding Microsoft code samples.
*
* THIS CODE AND INFORMATION ARE PROVIDED AS IS WITHOUT WARRANTY OF ANY
* KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
* PARTICULAR PURPOSE.
*
************************************************************************
-->
<html>
<head>
<title>Debug Settings</title>
<meta http-equiv="Content-Type" content="text/html; charset=Unicode" />
<script language="javascript" src="js/Settings.js" type="text/javascript"></script>
<link href="css/Settings.css" rel="stylesheet" type="text/css" />
</head>
<body onload="LoadSettings()">
<div id="settingsContent">
<label for="txtFilename">Filename:</label>
<input type="text" name="txtFilename" id="fileName" size="40" maxlength="40" title="File name" onfocus="this.className='inputValid'"/><br />
<label for="taContent">Content:</label>
<textarea name="taContent" id="content" title="File content" cols="40" rows="10" onfocus="this.className='inputValid'"></textarea><br />
</div>
</body>
</html>