c# - ColorTranslator.FromHtml / ToHtml Equiv in WPF -
after googling, no solution found. upgrading old project of mine wpf (which have 0 experience in , doing learn) can't find equivalent method to:
system.drawing.colortranslator.tohtml(color.white)
i using store , retrieve colors xml. of know equivalent method in wpf?
currently using system.windows.media.color
try using system.drawing.color
instead, may solve problem:
system.drawing.colortranslator.tohtml(system.drawing.color.white);
Comments
Post a Comment