Skip to content

Commit

Permalink
Add Example Image
Browse files Browse the repository at this point in the history
  • Loading branch information
ricaun committed Dec 6, 2023
1 parent 675e905 commit a0e9a38
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion RevitAddin.PackageBuilder.Example/Revit/App.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ public class App : IExternalApplication
public Result OnStartup(UIControlledApplication application)
{
ribbonPanel = application.CreatePanel(GetRevitVersion());
ribbonPanel.CreatePushButton<Commands.Command>(Properties.Resource.Text);
ribbonPanel.CreatePushButton<Commands.Command>(Properties.Resource.Text)
.SetLargeImage("/UIFrameworkRes;component/ribbon/images/revit.ico");
return Result.Succeeded;
}

Expand Down

0 comments on commit a0e9a38

Please sign in to comment.