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

39 lines
1.4 KiB
HTML

<!--
*************************************************************************
*
* File: example.html
*
* Description:
* Root of the "Flyout" Desktop Gadget sample.
* Demonstrates gadget flyout 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>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Unicode" />
<script language="javascript" src="js/example.js" type="text/javascript"></script>
<link href="css/example.css" rel="stylesheet" type="text/css" />
</head>
<body onload="Init();">
<g:background id="imgBackground" src="images/background.png">
<div id="gadgetContent">
<a href="javascript:void(0);" onclick="showFlyout();">Show Flyout</a><br />
<p id="strFlyoutFeedback"></p>
</div>
</g:background>
</body>
</html>