We need to be able to open a web browser from within our application (.NetStandard 2.0). The browser should be opened as an external application, the requirement does not call for the browser to be embedded in our application, thus using the WebBroswer control is not an option. We need to be able to specify the following options:
- Height of the browser
- Width of the browser
- Top position
- Left position
- Addressbar enabled or disabled
- Menubar enabled or disabled
- Statusbar enabled or disabled
- Toolbar enabled or disabled
We initially thought that using the Process class would work, but it doesn't seem that these options can be specified with the Process class.