File tree Expand file tree Collapse file tree 2 files changed +15
-8
lines changed
UnderAutomation.UniversalRobots.Showcase.Forms Expand file tree Collapse file tree 2 files changed +15
-8
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,9 @@ The **Universal Robots SDK** enables seamless integration with Universal Robots
17
17
18
18
---
19
19
20
- <p align =" center " >
21
- <a href =" https://github.com/underautomation/UniversalRobots.NET/stargazers " ><b >⭐ Star if you like it !</b ></a >
22
- </p >
23
- <p align =" center " >
24
- <a href =" https://github.com/underautomation/UniversalRobots.NET/watchers " ><b >👁️ Watch to be notified of latest updates !</b ></a >
25
- </p >
20
+ [ ⭐ Star if you like it !] ( https://github.com/underautomation/UniversalRobots.NET/stargazers )
21
+
22
+ [ 👁️ Watch to be notified of latest updates !] ( https://github.com/underautomation/UniversalRobots.NET/watchers )
26
23
27
24
---
28
25
@@ -35,7 +32,7 @@ The **Universal Robots SDK** enables seamless integration with Universal Robots
35
32
✔️ ** Multi-Platform** – Works on Windows, Linux, and macOS
36
33
✔️ ** Commercial License** – Deploy with no royalties
37
34
38
- 📹 ** Watch Introduction Video : **
35
+ 📹 ** Watch Introduction Video**
39
36
40
37
https://user-images.githubusercontent.com/47540360/143318635-6d6aaaf4-5642-457a-8ff1-4322f2defe82.mp4
41
38
Original file line number Diff line number Diff line change 1
1
using System ;
2
2
using System . Collections . Generic ;
3
+ using System . Diagnostics ;
3
4
using System . Drawing ;
4
5
using System . Linq ;
5
6
using System . Windows . Forms ;
@@ -139,7 +140,16 @@ internal void SelectNode(TreeNode node)
139
140
// Open browser to documentation page
140
141
private void lblLink_LinkClicked ( object sender , LinkLabelLinkClickedEventArgs e )
141
142
{
142
- System . Diagnostics . Process . Start ( "https://underautomation.com/universal-robots/documentation?f" ) ;
143
+ try
144
+ {
145
+ var ps = new ProcessStartInfo ( "https://underautomation.com/universal-robots" )
146
+ {
147
+ UseShellExecute = true ,
148
+ Verb = "open"
149
+ } ;
150
+ Process . Start ( ps ) ;
151
+ }
152
+ catch { }
143
153
}
144
154
#endregion
145
155
You can’t perform that action at this time.
0 commit comments