`xmlns="http://www.intellij.com/uidesigner/form/"` 在 .form xml 中被 Intellij 标记为红色

The `xmlns="http://www.intellij.com/uidesigner/form/"` is marked red in .form xml by Intellij

我刚刚在 Intellij 中创建了名为 TestUI 的 GUI 窗体。然后 TestUI.form 和 TestUI.java 由 IDE 创建,如下所示。

TestUI.java

public class TestUI {
}  

TestUI.form

<?xml version="1.0" encoding="UTF-8"?>
<form xmlns="http://www.intellij.com/uidesigner/form/" version="1" bind-to-class="TestUI">
  <grid id="27dc6" row-count="1" column-count="1" layout-manager="GridLayoutManager">
    <margin top="0" left="0" bottom="0" right="0"/>
    <constraints>
      <xy x="20" y="20" width="500" height="400"/>
      <grid row="0" column="0" row-span="1" col-span="1" vsize-policy="3" hsize-policy="3" anchor="0" fill="3" indent="0" use-parent-layout="false"/>
    </constraints>
    <properties/>
    <border type="none"/>
    <children/>
  </grid>
</form>

奇怪的是java文件是空的,窗体文件无法用图形界面打开。更重要的是 xmlns="http://www.intellij.com/uidesigner/form/" 被 IDE 标记为红色。你能帮助我吗 ?如何以图形界面方式打开表单文件?

这个问题在评论中被yole解决了