Fix typo in OSX demo.
This commit is contained in:
Родитель
5ff18f148e
Коммит
4338833fdd
|
@ -80,7 +80,7 @@
|
|||
<scene sceneID="hIz-AP-VOD">
|
||||
<objects>
|
||||
<viewController id="XfG-lQ-9wD" customClass="ViewController" sceneMemberID="viewController">
|
||||
<view key="view" id="m2S-Jp-Qdl" customClass="SkaiView">
|
||||
<view key="view" id="m2S-Jp-Qdl" customClass="SkiaView">
|
||||
<rect key="frame" x="0.0" y="0.0" width="480" height="270"/>
|
||||
<autoresizingMask key="autoresizingMask"/>
|
||||
<subviews>
|
||||
|
|
|
@ -84,9 +84,9 @@
|
|||
<Compile Include="ViewController.designer.cs">
|
||||
<DependentUpon>ViewController.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SkaiView.cs" />
|
||||
<Compile Include="SkaiView.designer.cs">
|
||||
<DependentUpon>SkaiView.cs</DependentUpon>
|
||||
<Compile Include="SkiaView.cs" />
|
||||
<Compile Include="SkiaView.designer.cs">
|
||||
<DependentUpon>SkiaView.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="AppDelegate.designer.cs">
|
||||
<DependentUpon>AppDelegate.cs</DependentUpon>
|
||||
|
@ -116,4 +116,4 @@
|
|||
</ItemGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Mac\Xamarin.Mac.CSharp.targets" />
|
||||
<Import Project="packages\SkiaSharp.1.49.2.1-beta\build\XamarinMac\SkiaSharp.targets" Condition="Exists('packages\SkiaSharp.1.49.2.1-beta\build\XamarinMac\SkiaSharp.targets')" />
|
||||
</Project>
|
||||
</Project>
|
||||
|
|
|
@ -8,11 +8,11 @@ using SkiaSharp;
|
|||
|
||||
namespace Skia.OSX.Demo
|
||||
{
|
||||
public partial class SkaiView : NSView
|
||||
public partial class SkiaView : NSView
|
||||
{
|
||||
Action <SKCanvas, int, int> onDrawCallback;
|
||||
|
||||
public SkaiView (IntPtr handle) : base (handle)
|
||||
public SkiaView (IntPtr handle) : base (handle)
|
||||
{
|
||||
}
|
||||
|
|
@ -9,10 +9,10 @@ using System.CodeDom.Compiler;
|
|||
|
||||
namespace Skia.OSX.Demo
|
||||
{
|
||||
[Register ("SkaiView")]
|
||||
partial class SkaiView
|
||||
[Register ("SkiaView")]
|
||||
partial class SkiaView
|
||||
{
|
||||
|
||||
|
||||
void ReleaseDesignerOutlets ()
|
||||
{
|
||||
}
|
|
@ -16,7 +16,7 @@ namespace Skia.OSX.Demo
|
|||
AppKit.NSPopUpButton PopUpButton { get; set; }
|
||||
|
||||
[Outlet]
|
||||
Skia.OSX.Demo.SkaiView SkiaView { get; set; }
|
||||
Skia.OSX.Demo.SkiaView SkiaView { get; set; }
|
||||
|
||||
[Action ("PopUpButtonAction:")]
|
||||
partial void PopUpButtonAction (Foundation.NSObject sender);
|
||||
|
|
Загрузка…
Ссылка в новой задаче