Jak pridat ikonu ke konzolove aplikaci(C#)
1)Pridejte do Vasi konzolove aplikace reference na tyto 4 Assembly: PresentationCore, System.Drawing, System.Xaml a WindowsBase. Takhle se pridava assembly PresentationCore, staci stisknout OK! 2)Do souboru(u), kde budeme mit tyto tridy musime mit tyto using directivy. Jedna se o ty co jsou v Program.cs po vytvoreni konzolove aplikace a mnou pridane skrze Resolve:
1 2 3 4 5 6 7 8 9 |
using System; using System.Collections.Generic; using System.Drawing; using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Threading.Tasks; using System.Windows.Media.Imaging; |
3)Vytvorime si …
Read More Jak pridat ikonu ke konzolove aplikaci(C#)