public DoubleMetroTileViewModel()
 {
     DefaultTileIcon = new MetroTileIcon(65, 65)
                       {
                           PathUri = "../../Content/themes/Metro/WhiteIcons/48x48/flag.png",
                           AltText = "No Picture",
                           Title = "No Picture"
                       };
 }
 public MetroTileViewModel()
 {
     InitializeListProperties();
     DefaultTileIcon = new MetroTileIcon()
                       {
                           PathUri = "../../Content/themes/Metro/Images/OnetugTree.113x132.AlphaBackground.png",
                           AltText = "Orlando .NET User Group Logo",
                           Title = "Orlando .NET User Group"
                       };
 }
 public TweetViewModel()
 {
     ProfilePhoto = new MetroTileIcon(52, 52)
                    {
                        PathUri = "../../Content/themes/Metro/Images/twitter_newbird_white.png",
                        AltText = "Follow us on Twitter @ONETUG",
                        Title = "Follow us on Twitter @ONETUG"
                    };
     TweetContent = "Test tweet for #OrlandoCC with consumption of all 146 characters.  This is for the new Orlando Code Camp site that we are currently working.";/*"Follow us on Twitter @ONETUG or use the hashtag #OrlandoCC";*/
     ProfileName = "Hallmanac";
     ActiveCssClass = "tweetVisible";
 }
 public static MvcHtmlString ImageTag(this HtmlHelper html, MetroTileIcon icon, string cssClass = null)
 {
     return ImageTag(html, icon.PathUri, icon.AltText, icon.Height, icon.Width, icon.Title, cssClass);
 }