简体   繁体   中英

How to remove windows-like border from window in TideSdk application?

How to remove windows-like border from window in TideSdk application?
I don't find solution in the API...
Screenshot.
Sorry for bad English. Thanks in advance!

This is something that you configure in your tiapp.xml file. In the window element, insert a chrome element with the value false. For example:

<window>
  <id>initial</id>
  <title>My Great App</title>
  <url>app://index.html</url>
  <width>700</width>
  <height>500</height>
  <fullscreen>false</fullscreen>
  <chrome>false</chrome>
</window>

Hope that helps.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM