From 5510b95d53cd90e0badff5a81ec097af922d1cb9 Mon Sep 17 00:00:00 2001 From: Siegfried Pammer Date: Tue, 10 Sep 2019 02:21:52 +0200 Subject: [PATCH] add icons for delegate, enum, interface and struct. --- ILSpy/ILSpy.csproj | 20 ++++++++++++++++++++ ILSpy/Images/Delegate.png | Bin 657 -> 316 bytes ILSpy/Images/Delegate.xaml | 10 ++++++++++ ILSpy/Images/Enum.png | Bin 378 -> 303 bytes ILSpy/Images/Enum.xaml | 10 ++++++++++ ILSpy/Images/Images.cs | 8 ++++---- ILSpy/Images/Interface.png | Bin 340 -> 222 bytes ILSpy/Images/Interface.xaml | 10 ++++++++++ ILSpy/Images/Struct.png | Bin 361 -> 167 bytes ILSpy/Images/Struct.xaml | 9 +++++++++ 10 files changed, 63 insertions(+), 4 deletions(-) create mode 100644 ILSpy/Images/Delegate.xaml create mode 100644 ILSpy/Images/Enum.xaml create mode 100644 ILSpy/Images/Interface.xaml create mode 100644 ILSpy/Images/Struct.xaml diff --git a/ILSpy/ILSpy.csproj b/ILSpy/ILSpy.csproj index f9d7a38eb..319e94081 100644 --- a/ILSpy/ILSpy.csproj +++ b/ILSpy/ILSpy.csproj @@ -315,13 +315,17 @@ + + + + @@ -418,10 +422,22 @@ Designer MSBuild:Compile + + Designer + MSBuild:Compile + + + Designer + MSBuild:Compile + Designer MSBuild:Compile + + Designer + MSBuild:Compile + Designer MSBuild:Compile @@ -446,6 +462,10 @@ Designer MSBuild:Compile + + Designer + MSBuild:Compile + MSBuild:Compile diff --git a/ILSpy/Images/Delegate.png b/ILSpy/Images/Delegate.png index ab3ebb548669695ae9f958366fec280693b7d776..9a45db9c056c4a0270dca5915e82755a7f494693 100644 GIT binary patch delta 289 zcmV++0p9+R1-t@~B!3BTNLh0L01m_e01m_fl`9S#0002)Nklc4&amM_Hh(me#d6O}XWP#FX9L&d21O{DAJ84tq1~&61`4i{ zi$c5PkV^$j$&pF8gxZibW?9;ba!ELWdKlNX>N2bPDNB8b~7$DE-^4L^m3s900IC> zL_t(IPqmXhXj)Me$EEaR?b5|KbSX$fraC%UC5l$VL;A6F$bXUy`GC+S8EV@Ip-G^I zmk3RKB$XB<5)*?U2+~&s6RqH_A_z`Sf*`aNY)u3k{>{0>ml#5^LoXc8yNC1to&UX; zr&9foWw+b!34*}R2i1C>WwBV8)oLB>2 zUN6k|&2f3<5_LKq>rAB^j>qGOMxzLa!w3e096}D}R6`I&5#n1Bq)`A`t(GN|Npz-0 zA`yf_Ap`;e`2BwPd_K5THh4T9EH5p??RJAS3P7XLNNTm3{Y#Lh=YQjGjeh`pf1My{ SqLu~#0000 + + + + + + + + + \ No newline at end of file diff --git a/ILSpy/Images/Enum.png b/ILSpy/Images/Enum.png index 11bee284ba1493903cf4ff3afb6d545958575ea6..f7ca9688104d4c9f6495ee6a099ee0c89257e28f 100644 GIT binary patch delta 276 zcmV+v0qg$y0S< zBnS`)0!tPUbqJE7z;%Xj1}-oS0f!ix1T+`m5Ev>^kWAoa2!ezIOpY-_({$^SeY*ea z`@gg#j$@R8K*KLIiXt0;0KlLp1i&e>5wFXRy{|{;=#D*RyMJqu7myAQmk;O&_5&mV zOby69EF*_flSFkuh33g}7B^IC6wkAd&;6utP(T)XQy-SQ(Kjd}%bIuy4kO64ojDRh zYLX?dBU7z6<#%9~)o67{0#u9*Oqd!J3J4P+OuAi_mF}At!27eUu=$GNk0Oh3WKjA$ ae*rebRJ1Ym>pF8gxZibW?9;ba!ELWdKlNX>N2bPDNB8b~7$DE-^4L^m3s9008Mp zL_t(IPh(&h)Zol!#zr7sg9A4bbo|K;jO%{CoAdw2tKR?LUw^d!|NN->|GT>d|35t{ z{ST5OXu!c0jGO+voB3bMX9EiU@}%)UNDgiQE~g$}&-nbwMc@CwUp4>#`J&x55p;=hT}=j4@pB{YA(B?eiITzzx9X)XV!!|Nr|q|Nq|)bN++8 z^Yitj|G(Z&|5(3qCgUEs0U+mq6kv1e*0~Jt7IZQkL&uA{8K%Gu067O_3wmH-I2Bj0 xgPimK%R0hN#bp4 + + + + + + + + + \ No newline at end of file diff --git a/ILSpy/Images/Images.cs b/ILSpy/Images/Images.cs index fec60807b..70c3928b9 100644 --- a/ILSpy/Images/Images.cs +++ b/ILSpy/Images/Images.cs @@ -83,10 +83,10 @@ namespace ICSharpCode.ILSpy public static readonly BitmapImage ResourceXslt = LoadBitmap("ResourceXslt"); public static readonly object Class = Load("Class"); - public static readonly BitmapImage Struct = LoadBitmap("Struct"); - public static readonly BitmapImage Interface = LoadBitmap("Interface"); - public static readonly BitmapImage Delegate = LoadBitmap("Delegate"); - public static readonly BitmapImage Enum = LoadBitmap("Enum"); + public static readonly object Struct = Load("Struct"); + public static readonly object Interface = Load("Interface"); + public static readonly object Delegate = Load("Delegate"); + public static readonly object Enum = Load("Enum"); public static readonly BitmapImage StaticClass = LoadBitmap("StaticClass"); diff --git a/ILSpy/Images/Interface.png b/ILSpy/Images/Interface.png index 906a8ef07f4ffc755da9ee4a948ed7b1840668f1..3b07597dd799fd33c201f872b600fcfc09dc5a66 100644 GIT binary patch delta 176 zcmV;h08jta0^R|TB#}WCe~?K;K~#8N?NT8QgfI~7Pwt+=ANatzGyDLk zgXZjsf@muX(}c|e0N2bPDNB8b~7$DE-^4L^m3s9006^DL_t(IPh(&hAz- + + + + + + + + + \ No newline at end of file diff --git a/ILSpy/Images/Struct.png b/ILSpy/Images/Struct.png index 745352b9bcab45c950fb1838564eca138ce0ee94..abbf37aa83c8214801d5e73fcc047691ca0221a7 100644 GIT binary patch delta 139 zcmV;60CfN90;d6xB!3BTNLh0L01m_e01m_fl`9S#00014NkluePws0epFy tq5$qH;FChGsK(odtpA=ujbHzb5p5|M8LRN=K>z>%07*qoLpF8gxZibW?9;ba!ELWdKlNX>N2bPDNB8b~7$DE-^4L^m3s9007uY zL_t(IPtB6i282KqhI`0*iFvT@qKg=kNQp{qQYumrMI_N>{C~UCRd%C^wRSjHXa3Ke zZ;l}R%@IZMAxRR>iuEoZ%7WXrVO>{D(}ce7(KHQ;qS&EafMr=Qjw8CRLseDCvJ6oa z@dJioK-;z`%MwYFAP53Dj>8YA>l%5UBaUMbLQZ|KaZa7EMw+Gw!w|0P?%`WbSitvv z*tQMBFm}K#Cr7Wq{QiYsb>ev*EX#tf>-F7Z!?}DAU;qFB07*qoM6N<$g4d{xp#T5? diff --git a/ILSpy/Images/Struct.xaml b/ILSpy/Images/Struct.xaml new file mode 100644 index 000000000..b5142701b --- /dev/null +++ b/ILSpy/Images/Struct.xaml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file