0
local MyAddon = CreateFrame("frame","MyAddonFrame")
MyAddon:SetBackdrop({
      bgFile="Interface\\DialogFrame\\UI-DialogBox-Background", 
      edgeFile="Interface\\DialogFrame\\UI-DialogBox-Border", 
      tile=1, tileSize=32, edgeSize=32, 
      insets={left=11, right=12, top=12, bottom=11}
})
MyAddon:SetWidth(220)
MyAddon:SetHeight(400)
MyAddon:SetPoint("CENTER",UIParent)
MyAddon:EnableMouse(true)
MyAddon:SetMovable(true)
MyAddon:RegisterForDrag("LeftButton")
MyAddon:SetScript("OnDragStart", function(self) self:StartMoving() end)
MyAddon:SetScript("OnDragStart", function(self) self:StartMoving() end)
MyAddon:SetScript("OnDragStop", function(self) self:StopMovingOrSizing() end)
MyAddon:SetFrameStrata("FULLSCREEN_DIALOG")



MyAddon:RegisterEvent("PLAYER_ENTERING_WORLD");
local function eventHandler(self, event, ...)
 print("Hello World! Hello " .. event);
end
MyAddon:SetScript("OnEvent", eventHandler);

我编写了一个要在 Lua 中创建的框架,只想简单地放入“Hello World”,以便文本成为框架的一部分。

有什么建议吗?

4

1 回答 1

2

我相信你想要 CreateFontString 函数:

local helloFS = MyAddon:CreateFontString(nil, "OVERLAY", "GameFontNormal")
helloFS:SetPoint("CENTER")
helloFS:SetText("Hello World!")
于 2012-01-28T17:10:14.243 回答