private void Button_Click_1(object sender, RoutedEventArgs e)
        {
            Notebook_Sayfası notebook_Sayfası = new Notebook_Sayfası();
            var window = (MainWindow)Application.Current.MainWindow;

            window.Main.Content = notebook_Sayfası;
        }
        private void Laptop_Yönlendir(object sender, RoutedEventArgs e)
        {
            Notebook_Sayfası notebook_Sayfası = new Notebook_Sayfası();

            notebook_Sayfası.başlık.Content     = "Laptop";
            notebook_Sayfası.kategoribilgi.Text = "";
            var window = (MainWindow)Application.Current.MainWindow;

            window.Main.Content = notebook_Sayfası;
        }