You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, when I run my Photino app there is a border present.
This was first mentioned in a now closed issue, issue 115.
The issue was closed with "We're not sure why it was set to have a border in the first place. We've removed it for the next release."
However, there is a border still present.
Below is also the code I've used, it's near identical to the template:
using System;using System.Drawing;using System.IO;using System.Text;using PhotinoNET;namespace RenchGui;classProgram{[STAThread]staticvoidMain(string[]args){stringwindowTitle="RenchGui";varwindow=new PhotinoWindow().SetTitle(windowTitle).SetUseOsDefaultSize(false).SetSize(new Size(300,300)).SetChromeless(true).Center().SetResizable(false).SetContextMenuEnabled(false)// Most event handlers can be registered after the// PhotinoWindow was instantiated by calling a registration// method like the following RegisterWebMessageReceivedHandler.// This could be added in the PhotinoWindowOptions if preferred..RegisterWebMessageReceivedHandler((objectsender,stringmessage)=>{varwindow=(PhotinoWindow)sender;// The message argument is coming in from sendMessage.// "window.external.sendMessage(message: string)"stringresponse=$"Received message: \"{message}\"";// Send a message back the to JavaScript event handler.// "window.external.receiveMessage(callback: Function)" window.SendWebMessage(response);}).Load("wwwroot/index.html");
window.WaitForClose();}}
Hello, when I run my Photino app there is a border present.
This was first mentioned in a now closed issue, issue 115.
The issue was closed with "We're not sure why it was set to have a border in the first place. We've removed it for the next release."
However, there is a border still present.
Below is also the code I've used, it's near identical to the template:
Here is the output from Photino:
If you need any more information please let me know,.
The text was updated successfully, but these errors were encountered: