簡體   English   中英

IntelliJ Idea 不顯示 GUI

[英]IntelliJ Idea Not showing GUI

出於某種原因,我的 GUI 不再顯示在 .form 文件中,而是它的所有硬代碼,例如:

<?xml version="1.0" encoding="UTF-8"?>
<form xmlns="http://www.intellij.com/uidesigner/form/" version="1" bind-to-class="emroGUI">
  <grid id="27dc6" binding="mainPanel" layout-manager="GridLayoutManager" row-count="11" column-count="7" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">
    <margin top="0" left="0" bottom="0" right="0"/>
    <constraints>
      <xy x="20" y="20" width="742" height="400"/>
    </constraints>
    <properties/>
    <border type="none"/>

等等。當我最初制作 GUI 時,我是通過“拖放”完成的,我看到了實際的 GUI 形式。 我如何取回實際表格?

您的 XML 內容現在格式錯誤,我認為您缺少以下結束標記:

 </grid> </form>

准確的結構如下:

<?xml version="1.0" encoding="UTF-8"?>
<form xmlns="http://www.intellij.com/uidesigner/form/" version="1" bind-to-class="emroGUI">
    <grid id="27dc6" binding="mainPanel" layout-manager="GridLayoutManager" row-count="11" column-count="7" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">
        <margin top="0" left="0" bottom="0" right="0"/>
        <constraints>
            <xy x="20" y="20" width="742" height="400"/>
        </constraints>
        <properties/>
        <border type="none"/>
    </grid>
</form>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM