/// <summary> /// Looks up the localized name of the specified category. /// </summary> /// <param name="value">The identifier for the category to look up.</param> /// <returns>The localized name of the category, or a null reference /// if a localized name does not exist.</returns> protected override string GetLocalizedString(string categoryName) { return(Resources.GetString(categoryName)); }
/// <summary> /// Creates the format list for the open file dialog. /// </summary> /// <param name="ppszFormatList">The format list to return.</param> /// <returns>S_OK if method is succeeded.</returns> public override int GetFormatList(out string ppszFormatList) { ppszFormatList = String.Format(CultureInfo.CurrentCulture, Resources.GetString(Resources.NestedProjectFileAssemblyFilter), "\0", "\0"); return(VSConstants.S_OK); }
/// <summary> /// Explicitly defined default constructor. /// </summary> public GeneralPropertyPage() { this.Name = Resources.GetString(Resources.GeneralCaption); }