| 123456789101112131415161718192021222324 | using InABox.Wpf;using System.Windows;namespace PRSDesktop.Forms{    /// <summary>    ///     Interaction logic for LocationForm.xaml    /// </summary>    public partial class LocationForm : ThemableWindow    {        public LocationForm()        {            InitializeComponent();        }        private void OKButton_Click(object sender, RoutedEventArgs e)        {        }        private void CancelButton_Click(object sender, RoutedEventArgs e)        {        }    }}
 |