Application Launcher
grouped by theme and opening always on the same position
grouped by theme and opening always on the same position
Actually, I developed this application because I could not group by theme the shortcuts for launching applications that always open in the same place on the screen. Grouping is possible via File Explorer but it never opens at the same place 😞. Also, after configuration in an XML file, I was able to group by theme and always positioned identically 😃.
Below are my three groupings for my three themes:
Shortcuts for my 3 grouping theme
Below the two windows always open at the location defined in the configuration:
"Vidéo" et "Développement" always located at the same position on the screen
Below is the configuration XML file for the “Video” group:
The window always opens at the 700/200 position on the screen with a size of 400/160.
<?xml version="1.0" encoding="utf-8"?>
<config>
<name>Vidéo</name>
<position x="700" y="200" width="400" high="160"/>
<iconSize width="48" high="48"/>
<clickToExec>simple</clickToExec>
<font size ="9">Arial</font>
<items>
<item>
<name>HiP2P Client</name>
<icon>C:\Program Files (x86)\HiP2P Client\P2PClient.exe</icon>
<exe>C:\Program Files (x86)\HiP2P Client\P2PClient.exe</exe>
<startDir></startDir>
</item>
<item>
<name>HiP2P Player</name>
<icon>C:\Program Files (x86)\HiP2P Client\HIPlayer.exe</icon>
<exe>C:\Program Files (x86)\HiP2P Client\HIPlayer.exe</exe>
<startDir></startDir>
</item>
<item>
<name>ONVIF</name>
<icon>C:\Program Files (x86)\Synesis\ONVIF Device Manager\odm.exe</icon>
<exe>C:\Program Files (x86)\Synesis\ONVIF Device Manager\odm.exe</exe>
<startDir></startDir>
</item>
</items>
</config>
Note for developers: This application was developed in C# (CSharp) with the Visual Studio IDE.