MetroFramework.Forms.MetroMessageBox does not have a Show() method. Using VS2017 Community, have installed MetroFramework with NuGet and referenced the Metro DLLs in my solution. have
using MetroFramework;
using MetroFramework.Forms;
in the Forms cs file. I am trying to do
MetroFramework.Forms.MetroMessageBox.Show(this, "Your message here.", "Title Here", MessageBoxButtons.OKCancel, MessageBoxIcon.Hand);
but Show is illegal.
should be either:
or:
based on similar looking code at http://foxlearn.com/article/metro-message-box-in-csharp-124.html and the fact that
MetroMessageBoxis in theMetroFrameworknamespae.