Skip to content

Commit 3360752

Browse files
committed
Update resource image to Cube-Grey-Light.tiff and Cube-Grey-Dark.tiff.
1 parent f649185 commit 3360752

File tree

8 files changed

+11
-8
lines changed

8 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1313
### Example
1414
- Add `CircleCreate` command to the example project.
1515
- Add `MessageBox` and `ShowBalloon` buttons to the example ribbon panel.
16+
- Update resource image to `Cube-Grey-Light.tiff` and `Cube-Grey-Dark.tiff`.
1617
### Fixes
1718
- Fix `CheckURLValid` to support `http` and `https`.
1819
- Fix `SetImage` to update `Image` property.

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>0.2.0-beta.1</Version>
3+
<Version>0.2.0-beta.2</Version>
44
</PropertyGroup>
55
</Project>

ricaun.AutoCAD.UI.Example/App.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ public override void OnStartup(RibbonControl ribbonControl)
3838
.SetCommand(Commands.CircleCreate)
3939
.SetDescription("Create a circle with a random radius in the model space.")
4040
.SetToolTip("This button use the command 'CircleCreate'.")
41-
.SetLargeImage("Resources/Box-Cyan-Light.tiff");
41+
.SetLargeImage("Resources/Cube-Grey-Light.tiff");
4242

43-
ribbonPanel.CreateButton("ShowMessage")
43+
ribbonPanel.CreateButton("Show\rMessage")
4444
.SetCommand((item) => { Windows.MessageBox.ShowMessage(item.Text, "This is a custom message."); })
45-
.SetLargeImage("Resources/Box-Cyan-Light.tiff");
45+
.SetLargeImage("Resources/Cube-Grey-Light.tiff");
4646

47-
ribbonPanel.CreateButton("ShowBalloon")
47+
ribbonPanel.CreateButton("Show\rBalloon")
4848
.SetCommand((item) => { Windows.InfoCenter.ShowBalloon(item.Text, "This is a custom message."); })
49-
.SetLargeImage("Resources/Box-Cyan-Light.tiff");
49+
.SetLargeImage("Resources/Cube-Grey-Light.tiff");
5050

5151
ribbonControl.ActiveTab = ribbonPanel.Tab;
5252
}
-3.48 KB
Binary file not shown.
-3.68 KB
Binary file not shown.
4.71 KB
Binary file not shown.
5.19 KB
Binary file not shown.

ricaun.AutoCAD.UI.Example/ricaun.AutoCAD.UI.Example.csproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@
6767
<ItemGroup>
6868
<None Remove="Box-Cyan-Dark.tiff" />
6969
<None Remove="Box-Cyan-Light.tiff" />
70+
<None Remove="Resources\Cube-Grey-Dark.tiff" />
71+
<None Remove="Resources\Cube-Grey-Light.tiff" />
7072
</ItemGroup>
7173

7274
<ItemGroup>
@@ -82,8 +84,8 @@
8284
</ItemGroup>
8385

8486
<ItemGroup>
85-
<Resource Include="Resources\Box-Cyan-Dark.tiff" />
86-
<Resource Include="Resources\Box-Cyan-Light.tiff" />
87+
<Resource Include="Resources\Cube-Grey-Dark.tiff" />
88+
<Resource Include="Resources\Cube-Grey-Light.tiff" />
8789
</ItemGroup>
8890

8991
<PropertyGroup>

0 commit comments

Comments
 (0)