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

36 lines
1.4 KiB
HTML

<!--
*************************************************************************
*
* File: Settings.html
*
* Description:
* The root of the settings dialog for the "Settings" Desktop Gadget sample.
* Demonstrates gadget settings functionality.
*
* 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 xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Unicode" />
<script src="js/Settings.js" type="text/javascript" language="javascript"></script>
<link href="css/Settings.css" rel="stylesheet" type="text/css" />
</head>
<body onload="LoadSettings();">
<label for="txtUserEntry">Modify text:</label><br />
<input type="text" name="txtUserEntry" id="txtUserEntry" title="Enter new text"/>
</body>
</html>