using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; namespace WpfApp { /// /// Interaction logic for MainWindow.xaml /// public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); } private void cbWebPages_SelectionChanged(object sender, EventArgs e) { // cbWebPages.SelectedItem.ToString() jest czymś w rodzaju: // System.Windows.Controls.ComboBoxItem: www.wp.pl // dlatego należy wyodrębnić adres // w tym celu korzystamy z metody split(), separatorem jest dwukropek string itemString = cbWebPages.SelectedItem.ToString(); string[] itemSplit = itemString.Split(':'); // usuwamy spacje przed adresem z pomocą metody Trim() string address = itemSplit[1].Trim(); // uruchamiamy przeglądarkę z danym adresem System.Diagnostics.Process.Start("explorer.exe", "http://" + address); } } }