📄 titanexitgame.xml
字号:
<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/
..\FrameXML\UI.xsd">
<Script file="TitanExitGame.lua"/>
<Frame parent="UIParent">
<Frames>
<Button name="TitanPanelExitGameButton" inherits="TitanPanelIconTemplate" frameStrata="FULLSCREEN" toplevel="true">
<Scripts>
<OnLoad>
TitanPanelExitGameButton_OnLoad();
TitanPanelButton_OnLoad();
</OnLoad>
<OnClick>
TitanPanelExitGameButton_OnClick(arg1);
</OnClick>
</Scripts>
</Button>
</Frames>
</Frame>
<Frame name="LogoutFrame" toplevel="true" movable="true" enableMouse="true" hidden="true" parent="UIParent">
<Size>
<AbsDimension x="195" y="125"/>
</Size>
<Anchors>
<Anchor point="CENTER"/>
</Anchors>
<Backdrop bgFile="Interface\DialogFrame\UI-DialogBox-Background" edgeFile="Interface\DialogFrame\UI-DialogBox-Border" tile="true">
<BackgroundInsets>
<AbsInset left="11" right="12" top="12" bottom="11"/>
</BackgroundInsets>
<TileSize>
<AbsValue val="32"/>
</TileSize>
<EdgeSize>
<AbsValue val="32"/>
</EdgeSize>
</Backdrop>
<Layers>
<Layer level="ARTWORK">
<Texture name="LogoutFrameHeader" file="Interface\DialogFrame\UI-DialogBox-Header">
<Size>
<AbsDimension x="256" y="64"/>
</Size>
<Anchors>
<Anchor point="TOP">
<Offset>
<AbsDimension x="0" y="9"/>
</Offset>
</Anchor>
</Anchors>
</Texture>
<FontString inherits="GameFontNormal" text="TITAN_EXITGAME_TOOLTIP">
<Anchors>
<Anchor point="TOP" relativeTo="LogoutFrameHeader">
<Offset>
<AbsDimension x="0" y="-15"/>
</Offset>
</Anchor>
</Anchors>
</FontString>
</Layer>
</Layers>
<Frames>
<Button name="LogoutButton" inherits="GameMenuButtonTemplate" text="LOG_OUT">
<Anchors>
<Anchor point="CENTER" relativePoint="TOP">
<Offset>
<AbsDimension x="0" y="-42"/>
</Offset>
</Anchor>
</Anchors>
<Scripts>
<OnClick>
PlaySound("igMainMenuLogout");
Logout();
HideUIPanel(LogoutFrame);
</OnClick>
</Scripts>
</Button>
<Button name="ExitButton" inherits="GameMenuButtonTemplate" text="TITAN_EXITGAME_TOOLTIP">
<Anchors>
<Anchor point="CENTER" relativePoint="TOP">
<Offset>
<AbsDimension x="0" y="-67"/>
</Offset>
</Anchor>
</Anchors>
<Scripts>
<OnClick>
PlaySound("igMainMenuQuit");
Quit();
HideUIPanel(LogoutFrame);
</OnClick>
</Scripts>
</Button>
<Button name="CancelButton" inherits="GameMenuButtonTemplate" text="EXIT_MENU">
<Anchors>
<Anchor point="CENTER" relativePoint="TOP">
<Offset>
<AbsDimension x="0" y="-92"/>
</Offset>
</Anchor>
</Anchors>
<Scripts>
<OnClick>
HideUIPanel(LogoutFrame);
</OnClick>
</Scripts>
</Button>
</Frames>
</Frame>
</Ui>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -