Ana içeriğe atla

Kayıtlar

c#Wpf etiketine sahip yayınlar gösteriliyor

C# Library Automation with Sql - C# Sql ile Kutuphane Otomasyonu

Arkadaşlar merhaba. Bugunki paylaşacağım kodlar Sql ile calısarak veritabanı baglantılı kütüphane kitap kayıt sistemidir. Veritabanımızda tek bir tablomuz var adı da "Book" sütunları ise sırası ile -> "BookID", "BookName", "BookAuthor","BookPrice", "BookCategory" , "BookStok" olucak sekilde ekleyelim.  Zaten nasıl baglantı yapacagınızı biliyosunuz bilmiyorsanız da arastırın lütfen ayrıca kodlar yardımcı olucaktır . ***************  XAML KODLARIMIZ ****************************** < Window x:Class = "LastLibrary.MainWindow"         xmlns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation"         xmlns:x = "http://schemas.microsoft.com/winfx/2006/xaml"         Title = "Kutuphane"  Height = "410"  Width = "642.963"  MaxWidth = "700"  MaxHeight = "460"  MinHeight = "460"  MinWidth = "700...

C# Media Player - Mp4 Video Oynatıcısı

Arkadaşlar Visual Studio WPF uygulaması ile basit bir Mp4 Media Player yaptım kodlarını da sizle paylaşayım.Ayrıca System.Windows.Form  referansını eklemeyi unutmayınız. Lütfen kodları kopyalayıp yapıştırmadan deneyerek yapamadıgınız anda bakarak yazınız. 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; using  Microsoft . Win32; using  System . Windows . Forms; namespace  WpfGun7_250717 {          public   partial   class   MainWindow  :...