committed by
GitHub
551 changed files with 15281 additions and 3725 deletions
@ -0,0 +1,5 @@ |
|||||
|
<ProjectConfiguration> |
||||
|
<Settings> |
||||
|
<IgnoreThisComponentCompletely>True</IgnoreThisComponentCompletely> |
||||
|
</Settings> |
||||
|
</ProjectConfiguration> |
||||
@ -0,0 +1,5 @@ |
|||||
|
<ProjectConfiguration> |
||||
|
<Settings> |
||||
|
<IgnoreThisComponentCompletely>True</IgnoreThisComponentCompletely> |
||||
|
</Settings> |
||||
|
</ProjectConfiguration> |
||||
@ -0,0 +1,5 @@ |
|||||
|
<ProjectConfiguration> |
||||
|
<Settings> |
||||
|
<IgnoreThisComponentCompletely>True</IgnoreThisComponentCompletely> |
||||
|
</Settings> |
||||
|
</ProjectConfiguration> |
||||
@ -1,16 +0,0 @@ |
|||||
<Project> |
|
||||
<ItemGroup Condition="'$(AndroidApplication)' == 'true'"> |
|
||||
<!-- WORKAROUND: The packages below are transitively referenced by System.Memory, |
|
||||
but Xamarin.Android applications need the newest versions directly referenced for the linker. --> |
|
||||
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.6.0" /> |
|
||||
<PackageReference Include="System.Buffers" Version="4.5.0" /> |
|
||||
</ItemGroup> |
|
||||
<Target Name="_RemoveNonExistingResgenFile" BeforeTargets="CoreCompile" Condition="'$(_SdkSetAndroidResgenFile)' == 'true' And '$(AndroidResgenFile)' != '' And !Exists('$(AndroidResgenFile)')"> |
|
||||
<ItemGroup> |
|
||||
<Compile Remove="$(AndroidResgenFile)"/> |
|
||||
</ItemGroup> |
|
||||
</Target> |
|
||||
<PropertyGroup> |
|
||||
<DesignTimeBuild>false</DesignTimeBuild> |
|
||||
</PropertyGroup> |
|
||||
</Project> |
|
||||
@ -1,7 +1,7 @@ |
|||||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
||||
<ItemGroup> |
<ItemGroup> |
||||
<PackageReference Include="HarfBuzzSharp" Version="2.8.2-preview.178" /> |
<PackageReference Include="HarfBuzzSharp" Version="2.8.2-preview.209" /> |
||||
<PackageReference Condition="'$(IncludeLinuxSkia)' == 'true'" Include="HarfBuzzSharp.NativeAssets.Linux" Version="2.8.2-preview.178" /> |
<PackageReference Condition="'$(IncludeLinuxSkia)' == 'true'" Include="HarfBuzzSharp.NativeAssets.Linux" Version="2.8.2-preview.209" /> |
||||
<PackageReference Condition="'$(IncludeWasmSkia)' == 'true'" Include="HarfBuzzSharp.NativeAssets.WebAssembly" Version="2.8.2-preview.178"/> |
<PackageReference Condition="'$(IncludeWasmSkia)' == 'true'" Include="HarfBuzzSharp.NativeAssets.WebAssembly" Version="2.8.2-preview.209"/> |
||||
</ItemGroup> |
</ItemGroup> |
||||
</Project> |
</Project> |
||||
|
|||||
@ -1,7 +1,7 @@ |
|||||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
||||
<ItemGroup> |
<ItemGroup> |
||||
<PackageReference Include="SkiaSharp" Version="2.88.0-preview.178" /> |
<PackageReference Include="SkiaSharp" Version="2.88.0-preview.209" /> |
||||
<PackageReference Condition="'$(IncludeLinuxSkia)' == 'true'" Include="SkiaSharp.NativeAssets.Linux" Version="2.88.0-preview.178" /> |
<PackageReference Condition="'$(IncludeLinuxSkia)' == 'true'" Include="SkiaSharp.NativeAssets.Linux" Version="2.88.0-preview.209" /> |
||||
<PackageReference Condition="'$(IncludeWasmSkia)' == 'true'" Include="SkiaSharp.NativeAssets.WebAssembly" Version="2.88.0-preview.178"/> |
<PackageReference Condition="'$(IncludeWasmSkia)' == 'true'" Include="SkiaSharp.NativeAssets.WebAssembly" Version="2.88.0-preview.209"/> |
||||
</ItemGroup> |
</ItemGroup> |
||||
</Project> |
</Project> |
||||
|
|||||
@ -0,0 +1,12 @@ |
|||||
|
#import <Cocoa/Cocoa.h> |
||||
|
#include "window.h" |
||||
|
|
||||
|
NS_ASSUME_NONNULL_BEGIN |
||||
|
|
||||
|
class IAvnAutomationPeer; |
||||
|
|
||||
|
@interface AvnAccessibilityElement : NSAccessibilityElement |
||||
|
+ (AvnAccessibilityElement *) acquire:(IAvnAutomationPeer *) peer; |
||||
|
@end |
||||
|
|
||||
|
NS_ASSUME_NONNULL_END |
||||
@ -0,0 +1,496 @@ |
|||||
|
#include "common.h" |
||||
|
#include "automation.h" |
||||
|
#include "AvnString.h" |
||||
|
#include "window.h" |
||||
|
|
||||
|
@interface AvnAccessibilityElement (Events) |
||||
|
- (void) raiseChildrenChanged; |
||||
|
@end |
||||
|
|
||||
|
@interface AvnRootAccessibilityElement : AvnAccessibilityElement |
||||
|
- (AvnView *) ownerView; |
||||
|
- (AvnRootAccessibilityElement *) initWithPeer:(IAvnAutomationPeer *) peer owner:(AvnView*) owner; |
||||
|
- (void) raiseFocusChanged; |
||||
|
@end |
||||
|
|
||||
|
class AutomationNode : public ComSingleObject<IAvnAutomationNode, &IID_IAvnAutomationNode> |
||||
|
{ |
||||
|
public: |
||||
|
FORWARD_IUNKNOWN() |
||||
|
|
||||
|
AutomationNode(AvnAccessibilityElement* owner) |
||||
|
{ |
||||
|
_owner = owner; |
||||
|
} |
||||
|
|
||||
|
AvnAccessibilityElement* GetOwner() |
||||
|
{ |
||||
|
return _owner; |
||||
|
} |
||||
|
|
||||
|
virtual void Dispose() override |
||||
|
{ |
||||
|
_owner = nil; |
||||
|
} |
||||
|
|
||||
|
virtual void ChildrenChanged () override |
||||
|
{ |
||||
|
[_owner raiseChildrenChanged]; |
||||
|
} |
||||
|
|
||||
|
virtual void PropertyChanged (AvnAutomationProperty property) override |
||||
|
{ |
||||
|
|
||||
|
} |
||||
|
|
||||
|
virtual void FocusChanged () override |
||||
|
{ |
||||
|
[(AvnRootAccessibilityElement*)_owner raiseFocusChanged]; |
||||
|
} |
||||
|
|
||||
|
private: |
||||
|
__strong AvnAccessibilityElement* _owner; |
||||
|
}; |
||||
|
|
||||
|
@implementation AvnAccessibilityElement |
||||
|
{ |
||||
|
IAvnAutomationPeer* _peer; |
||||
|
AutomationNode* _node; |
||||
|
NSMutableArray* _children; |
||||
|
} |
||||
|
|
||||
|
+ (AvnAccessibilityElement *)acquire:(IAvnAutomationPeer *)peer |
||||
|
{ |
||||
|
if (peer == nullptr) |
||||
|
return nil; |
||||
|
|
||||
|
auto instance = peer->GetNode(); |
||||
|
|
||||
|
if (instance != nullptr) |
||||
|
return dynamic_cast<AutomationNode*>(instance)->GetOwner(); |
||||
|
|
||||
|
if (peer->IsRootProvider()) |
||||
|
{ |
||||
|
auto window = peer->RootProvider_GetWindow(); |
||||
|
auto holder = dynamic_cast<INSWindowHolder*>(window); |
||||
|
auto view = holder->GetNSView(); |
||||
|
return [[AvnRootAccessibilityElement alloc] initWithPeer:peer owner:view]; |
||||
|
} |
||||
|
else |
||||
|
{ |
||||
|
return [[AvnAccessibilityElement alloc] initWithPeer:peer]; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
- (AvnAccessibilityElement *)initWithPeer:(IAvnAutomationPeer *)peer |
||||
|
{ |
||||
|
self = [super init]; |
||||
|
_peer = peer; |
||||
|
_node = new AutomationNode(self); |
||||
|
_peer->SetNode(_node); |
||||
|
return self; |
||||
|
} |
||||
|
|
||||
|
- (void)dealloc |
||||
|
{ |
||||
|
if (_node) |
||||
|
delete _node; |
||||
|
_node = nullptr; |
||||
|
} |
||||
|
|
||||
|
- (NSString *)description |
||||
|
{ |
||||
|
return [NSString stringWithFormat:@"%@ '%@' (%p)", |
||||
|
GetNSStringAndRelease(_peer->GetClassName()), |
||||
|
GetNSStringAndRelease(_peer->GetName()), |
||||
|
_peer]; |
||||
|
} |
||||
|
|
||||
|
- (IAvnAutomationPeer *)peer |
||||
|
{ |
||||
|
return _peer; |
||||
|
} |
||||
|
|
||||
|
- (BOOL)isAccessibilityElement |
||||
|
{ |
||||
|
return _peer->IsControlElement(); |
||||
|
} |
||||
|
|
||||
|
- (NSAccessibilityRole)accessibilityRole |
||||
|
{ |
||||
|
auto controlType = _peer->GetAutomationControlType(); |
||||
|
|
||||
|
switch (controlType) { |
||||
|
case AutomationButton: return NSAccessibilityButtonRole; |
||||
|
case AutomationCalendar: return NSAccessibilityGridRole; |
||||
|
case AutomationCheckBox: return NSAccessibilityCheckBoxRole; |
||||
|
case AutomationComboBox: return NSAccessibilityPopUpButtonRole; |
||||
|
case AutomationComboBoxItem: return NSAccessibilityMenuItemRole; |
||||
|
case AutomationEdit: return NSAccessibilityTextFieldRole; |
||||
|
case AutomationHyperlink: return NSAccessibilityLinkRole; |
||||
|
case AutomationImage: return NSAccessibilityImageRole; |
||||
|
case AutomationListItem: return NSAccessibilityRowRole; |
||||
|
case AutomationList: return NSAccessibilityTableRole; |
||||
|
case AutomationMenu: return NSAccessibilityMenuBarRole; |
||||
|
case AutomationMenuBar: return NSAccessibilityMenuBarRole; |
||||
|
case AutomationMenuItem: return NSAccessibilityMenuItemRole; |
||||
|
case AutomationProgressBar: return NSAccessibilityProgressIndicatorRole; |
||||
|
case AutomationRadioButton: return NSAccessibilityRadioButtonRole; |
||||
|
case AutomationScrollBar: return NSAccessibilityScrollBarRole; |
||||
|
case AutomationSlider: return NSAccessibilitySliderRole; |
||||
|
case AutomationSpinner: return NSAccessibilityIncrementorRole; |
||||
|
case AutomationStatusBar: return NSAccessibilityTableRole; |
||||
|
case AutomationTab: return NSAccessibilityTabGroupRole; |
||||
|
case AutomationTabItem: return NSAccessibilityRadioButtonRole; |
||||
|
case AutomationText: return NSAccessibilityStaticTextRole; |
||||
|
case AutomationToolBar: return NSAccessibilityToolbarRole; |
||||
|
case AutomationToolTip: return NSAccessibilityPopoverRole; |
||||
|
case AutomationTree: return NSAccessibilityOutlineRole; |
||||
|
case AutomationTreeItem: return NSAccessibilityCellRole; |
||||
|
case AutomationCustom: return NSAccessibilityUnknownRole; |
||||
|
case AutomationGroup: return NSAccessibilityGroupRole; |
||||
|
case AutomationThumb: return NSAccessibilityHandleRole; |
||||
|
case AutomationDataGrid: return NSAccessibilityGridRole; |
||||
|
case AutomationDataItem: return NSAccessibilityCellRole; |
||||
|
case AutomationDocument: return NSAccessibilityStaticTextRole; |
||||
|
case AutomationSplitButton: return NSAccessibilityPopUpButtonRole; |
||||
|
case AutomationWindow: return NSAccessibilityWindowRole; |
||||
|
case AutomationPane: return NSAccessibilityGroupRole; |
||||
|
case AutomationHeader: return NSAccessibilityGroupRole; |
||||
|
case AutomationHeaderItem: return NSAccessibilityButtonRole; |
||||
|
case AutomationTable: return NSAccessibilityTableRole; |
||||
|
case AutomationTitleBar: return NSAccessibilityGroupRole; |
||||
|
// Treat unknown roles as generic group container items. Returning |
||||
|
// NSAccessibilityUnknownRole is also possible but makes the screen |
||||
|
// reader focus on the item instead of passing focus to child items. |
||||
|
default: return NSAccessibilityGroupRole; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
- (NSString *)accessibilityIdentifier |
||||
|
{ |
||||
|
return GetNSStringAndRelease(_peer->GetAutomationId()); |
||||
|
} |
||||
|
|
||||
|
- (NSString *)accessibilityTitle |
||||
|
{ |
||||
|
// StaticText exposes its text via the value property. |
||||
|
if (_peer->GetAutomationControlType() != AutomationText) |
||||
|
{ |
||||
|
return GetNSStringAndRelease(_peer->GetName()); |
||||
|
} |
||||
|
|
||||
|
return [super accessibilityTitle]; |
||||
|
} |
||||
|
|
||||
|
- (id)accessibilityValue |
||||
|
{ |
||||
|
if (_peer->IsRangeValueProvider()) |
||||
|
{ |
||||
|
return [NSNumber numberWithDouble:_peer->RangeValueProvider_GetValue()]; |
||||
|
} |
||||
|
else if (_peer->IsToggleProvider()) |
||||
|
{ |
||||
|
switch (_peer->ToggleProvider_GetToggleState()) { |
||||
|
case 0: return [NSNumber numberWithBool:NO]; |
||||
|
case 1: return [NSNumber numberWithBool:YES]; |
||||
|
default: return [NSNumber numberWithInt:2]; |
||||
|
} |
||||
|
} |
||||
|
else if (_peer->IsValueProvider()) |
||||
|
{ |
||||
|
return GetNSStringAndRelease(_peer->ValueProvider_GetValue()); |
||||
|
} |
||||
|
else if (_peer->GetAutomationControlType() == AutomationText) |
||||
|
{ |
||||
|
return GetNSStringAndRelease(_peer->GetName()); |
||||
|
} |
||||
|
|
||||
|
return [super accessibilityValue]; |
||||
|
} |
||||
|
|
||||
|
- (id)accessibilityMinValue |
||||
|
{ |
||||
|
if (_peer->IsRangeValueProvider()) |
||||
|
{ |
||||
|
return [NSNumber numberWithDouble:_peer->RangeValueProvider_GetMinimum()]; |
||||
|
} |
||||
|
|
||||
|
return [super accessibilityMinValue]; |
||||
|
} |
||||
|
|
||||
|
- (id)accessibilityMaxValue |
||||
|
{ |
||||
|
if (_peer->IsRangeValueProvider()) |
||||
|
{ |
||||
|
return [NSNumber numberWithDouble:_peer->RangeValueProvider_GetMaximum()]; |
||||
|
} |
||||
|
|
||||
|
return [super accessibilityMaxValue]; |
||||
|
} |
||||
|
|
||||
|
- (BOOL)isAccessibilityEnabled |
||||
|
{ |
||||
|
return _peer->IsEnabled(); |
||||
|
} |
||||
|
|
||||
|
- (BOOL)isAccessibilityFocused |
||||
|
{ |
||||
|
return _peer->HasKeyboardFocus(); |
||||
|
} |
||||
|
|
||||
|
- (NSArray *)accessibilityChildren |
||||
|
{ |
||||
|
if (_children == nullptr && _peer != nullptr) |
||||
|
[self recalculateChildren]; |
||||
|
return _children; |
||||
|
} |
||||
|
|
||||
|
- (NSRect)accessibilityFrame |
||||
|
{ |
||||
|
id topLevel = [self accessibilityTopLevelUIElement]; |
||||
|
auto result = NSZeroRect; |
||||
|
|
||||
|
if ([topLevel isKindOfClass:[AvnRootAccessibilityElement class]]) |
||||
|
{ |
||||
|
auto root = (AvnRootAccessibilityElement*)topLevel; |
||||
|
auto view = [root ownerView]; |
||||
|
|
||||
|
if (view) |
||||
|
{ |
||||
|
auto window = [view window]; |
||||
|
auto bounds = ToNSRect(_peer->GetBoundingRectangle()); |
||||
|
auto windowBounds = [view convertRect:bounds toView:nil]; |
||||
|
auto screenBounds = [window convertRectToScreen:windowBounds]; |
||||
|
result = screenBounds; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
return result; |
||||
|
} |
||||
|
|
||||
|
- (id)accessibilityParent |
||||
|
{ |
||||
|
auto parentPeer = _peer->GetParent(); |
||||
|
return parentPeer ? [AvnAccessibilityElement acquire:parentPeer] : [NSApplication sharedApplication]; |
||||
|
} |
||||
|
|
||||
|
- (id)accessibilityTopLevelUIElement |
||||
|
{ |
||||
|
auto rootPeer = _peer->GetRootPeer(); |
||||
|
return [AvnAccessibilityElement acquire:rootPeer]; |
||||
|
} |
||||
|
|
||||
|
- (id)accessibilityWindow |
||||
|
{ |
||||
|
id topLevel = [self accessibilityTopLevelUIElement]; |
||||
|
return [topLevel isKindOfClass:[NSWindow class]] ? topLevel : nil; |
||||
|
} |
||||
|
|
||||
|
- (BOOL)isAccessibilityExpanded |
||||
|
{ |
||||
|
if (!_peer->IsExpandCollapseProvider()) |
||||
|
return NO; |
||||
|
return _peer->ExpandCollapseProvider_GetIsExpanded(); |
||||
|
} |
||||
|
|
||||
|
- (void)setAccessibilityExpanded:(BOOL)accessibilityExpanded |
||||
|
{ |
||||
|
if (!_peer->IsExpandCollapseProvider()) |
||||
|
return; |
||||
|
if (accessibilityExpanded) |
||||
|
_peer->ExpandCollapseProvider_Expand(); |
||||
|
else |
||||
|
_peer->ExpandCollapseProvider_Collapse(); |
||||
|
} |
||||
|
|
||||
|
- (BOOL)accessibilityPerformPress |
||||
|
{ |
||||
|
if (_peer->IsInvokeProvider()) |
||||
|
{ |
||||
|
_peer->InvokeProvider_Invoke(); |
||||
|
} |
||||
|
else if (_peer->IsExpandCollapseProvider()) |
||||
|
{ |
||||
|
_peer->ExpandCollapseProvider_Expand(); |
||||
|
} |
||||
|
else if (_peer->IsToggleProvider()) |
||||
|
{ |
||||
|
_peer->ToggleProvider_Toggle(); |
||||
|
} |
||||
|
return YES; |
||||
|
} |
||||
|
|
||||
|
- (BOOL)accessibilityPerformIncrement |
||||
|
{ |
||||
|
if (!_peer->IsRangeValueProvider()) |
||||
|
return NO; |
||||
|
auto value = _peer->RangeValueProvider_GetValue(); |
||||
|
value += _peer->RangeValueProvider_GetSmallChange(); |
||||
|
_peer->RangeValueProvider_SetValue(value); |
||||
|
return YES; |
||||
|
} |
||||
|
|
||||
|
- (BOOL)accessibilityPerformDecrement |
||||
|
{ |
||||
|
if (!_peer->IsRangeValueProvider()) |
||||
|
return NO; |
||||
|
auto value = _peer->RangeValueProvider_GetValue(); |
||||
|
value -= _peer->RangeValueProvider_GetSmallChange(); |
||||
|
_peer->RangeValueProvider_SetValue(value); |
||||
|
return YES; |
||||
|
} |
||||
|
|
||||
|
- (BOOL)accessibilityPerformShowMenu |
||||
|
{ |
||||
|
if (!_peer->IsExpandCollapseProvider()) |
||||
|
return NO; |
||||
|
_peer->ExpandCollapseProvider_Expand(); |
||||
|
return YES; |
||||
|
} |
||||
|
|
||||
|
- (BOOL)isAccessibilitySelected |
||||
|
{ |
||||
|
if (_peer->IsSelectionItemProvider()) |
||||
|
return _peer->SelectionItemProvider_IsSelected(); |
||||
|
return NO; |
||||
|
} |
||||
|
|
||||
|
- (BOOL)isAccessibilitySelectorAllowed:(SEL)selector |
||||
|
{ |
||||
|
if (selector == @selector(accessibilityPerformShowMenu)) |
||||
|
{ |
||||
|
return _peer->IsExpandCollapseProvider() && _peer->ExpandCollapseProvider_GetShowsMenu(); |
||||
|
} |
||||
|
else if (selector == @selector(isAccessibilityExpanded)) |
||||
|
{ |
||||
|
return _peer->IsExpandCollapseProvider(); |
||||
|
} |
||||
|
else if (selector == @selector(accessibilityPerformPress)) |
||||
|
{ |
||||
|
return _peer->IsInvokeProvider() || _peer->IsExpandCollapseProvider() || _peer->IsToggleProvider(); |
||||
|
} |
||||
|
else if (selector == @selector(accessibilityPerformIncrement) || |
||||
|
selector == @selector(accessibilityPerformDecrement) || |
||||
|
selector == @selector(accessibilityMinValue) || |
||||
|
selector == @selector(accessibilityMaxValue)) |
||||
|
{ |
||||
|
return _peer->IsRangeValueProvider(); |
||||
|
} |
||||
|
|
||||
|
return [super isAccessibilitySelectorAllowed:selector]; |
||||
|
} |
||||
|
|
||||
|
- (void)raiseChildrenChanged |
||||
|
{ |
||||
|
auto changed = _children ? [NSMutableSet setWithArray:_children] : [NSMutableSet set]; |
||||
|
|
||||
|
[self recalculateChildren]; |
||||
|
|
||||
|
if (_children) |
||||
|
[changed addObjectsFromArray:_children]; |
||||
|
|
||||
|
NSAccessibilityPostNotificationWithUserInfo( |
||||
|
self, |
||||
|
NSAccessibilityLayoutChangedNotification, |
||||
|
@{ NSAccessibilityUIElementsKey: [changed allObjects]}); |
||||
|
} |
||||
|
|
||||
|
- (void)raisePropertyChanged |
||||
|
{ |
||||
|
} |
||||
|
|
||||
|
- (void)setAccessibilityFocused:(BOOL)accessibilityFocused |
||||
|
{ |
||||
|
if (accessibilityFocused) |
||||
|
_peer->SetFocus(); |
||||
|
} |
||||
|
|
||||
|
- (void)recalculateChildren |
||||
|
{ |
||||
|
auto childPeers = _peer->GetChildren(); |
||||
|
auto childCount = childPeers != nullptr ? childPeers->GetCount() : 0; |
||||
|
|
||||
|
if (childCount > 0) |
||||
|
{ |
||||
|
_children = [[NSMutableArray alloc] initWithCapacity:childCount]; |
||||
|
|
||||
|
for (int i = 0; i < childCount; ++i) |
||||
|
{ |
||||
|
IAvnAutomationPeer* child; |
||||
|
|
||||
|
if (childPeers->Get(i, &child) == S_OK) |
||||
|
{ |
||||
|
auto element = [AvnAccessibilityElement acquire:child]; |
||||
|
[_children addObject:element]; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
else |
||||
|
{ |
||||
|
_children = nil; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
@end |
||||
|
|
||||
|
@implementation AvnRootAccessibilityElement |
||||
|
{ |
||||
|
AvnView* _owner; |
||||
|
} |
||||
|
|
||||
|
- (AvnRootAccessibilityElement *)initWithPeer:(IAvnAutomationPeer *)peer owner:(AvnView *)owner |
||||
|
{ |
||||
|
self = [super initWithPeer:peer]; |
||||
|
_owner = owner; |
||||
|
|
||||
|
// Seems we need to raise a focus changed notification here if we have focus |
||||
|
auto focusedPeer = [self peer]->RootProvider_GetFocus(); |
||||
|
id focused = [AvnAccessibilityElement acquire:focusedPeer]; |
||||
|
|
||||
|
if (focused) |
||||
|
NSAccessibilityPostNotification(focused, NSAccessibilityFocusedUIElementChangedNotification); |
||||
|
|
||||
|
return self; |
||||
|
} |
||||
|
|
||||
|
- (AvnView *)ownerView |
||||
|
{ |
||||
|
return _owner; |
||||
|
} |
||||
|
|
||||
|
- (id)accessibilityFocusedUIElement |
||||
|
{ |
||||
|
auto focusedPeer = [self peer]->RootProvider_GetFocus(); |
||||
|
return [AvnAccessibilityElement acquire:focusedPeer]; |
||||
|
} |
||||
|
|
||||
|
- (id)accessibilityHitTest:(NSPoint)point |
||||
|
{ |
||||
|
auto clientPoint = [[_owner window] convertPointFromScreen:point]; |
||||
|
auto localPoint = [_owner translateLocalPoint:ToAvnPoint(clientPoint)]; |
||||
|
auto hit = [self peer]->RootProvider_GetPeerFromPoint(localPoint); |
||||
|
return [AvnAccessibilityElement acquire:hit]; |
||||
|
} |
||||
|
|
||||
|
- (id)accessibilityParent |
||||
|
{ |
||||
|
return _owner; |
||||
|
} |
||||
|
|
||||
|
- (void)raiseFocusChanged |
||||
|
{ |
||||
|
id focused = [self accessibilityFocusedUIElement]; |
||||
|
NSAccessibilityPostNotification(focused, NSAccessibilityFocusedUIElementChangedNotification); |
||||
|
} |
||||
|
|
||||
|
// Although this method is marked as deprecated we get runtime warnings if we don't handle it. |
||||
|
#pragma clang diagnostic push |
||||
|
#pragma clang diagnostic ignored "-Wdeprecated-implementations" |
||||
|
- (void)accessibilityPerformAction:(NSAccessibilityActionName)action |
||||
|
{ |
||||
|
[_owner accessibilityPerformAction:action]; |
||||
|
} |
||||
|
#pragma clang diagnostic pop |
||||
|
|
||||
|
@end |
||||
@ -1,19 +0,0 @@ |
|||||
Any raw assets you want to be deployed with your application can be placed in |
|
||||
this directory (and child directories) and given a Build Action of "AndroidAsset". |
|
||||
|
|
||||
These files will be deployed with your package and will be accessible using Android's |
|
||||
AssetManager, like this: |
|
||||
|
|
||||
public class ReadAsset : Activity |
|
||||
{ |
|
||||
protected override void OnCreate (Bundle bundle) |
|
||||
{ |
|
||||
base.OnCreate (bundle); |
|
||||
|
|
||||
InputStream input = Assets.Open ("my_asset.txt"); |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
Additionally, some Android functions will automatically load asset files: |
|
||||
|
|
||||
Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); |
|
||||
@ -1,165 +1,47 @@ |
|||||
<?xml version="1.0" encoding="utf-8"?> |
<Project Sdk="Microsoft.NET.Sdk"> |
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|
||||
<PropertyGroup> |
<PropertyGroup> |
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
<TargetFramework>net6.0-android</TargetFramework> |
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
<SupportedOSPlatformVersion>21</SupportedOSPlatformVersion> |
||||
<ProductVersion>8.0.30703</ProductVersion> |
<OutputType>Exe</OutputType> |
||||
<SchemaVersion>2.0</SchemaVersion> |
<Nullable>enable</Nullable> |
||||
<ProjectGuid>{29132311-1848-4FD6-AE0C-4FF841151BD3}</ProjectGuid> |
<ApplicationId>com.Avalonia.ControlCatalog</ApplicationId> |
||||
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> |
<ApplicationVersion>1</ApplicationVersion> |
||||
<OutputType>Library</OutputType> |
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion> |
||||
<AppDesignerFolder>Properties</AppDesignerFolder> |
<AndroidPackageFormat>apk</AndroidPackageFormat> |
||||
<RootNamespace>ControlCatalog.Android</RootNamespace> |
<MSBuildEnableWorkloadResolver>true</MSBuildEnableWorkloadResolver> |
||||
<AssemblyName>ControlCatalog.Android</AssemblyName> |
|
||||
<FileAlignment>512</FileAlignment> |
|
||||
<AndroidApplication>true</AndroidApplication> |
|
||||
<AndroidResgenFile>Resources\Resource.Designer.cs</AndroidResgenFile> |
|
||||
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies> |
|
||||
<AndroidUseLatestPlatformSdk>False</AndroidUseLatestPlatformSdk> |
|
||||
<TargetFrameworkVersion>v11.0</TargetFrameworkVersion> |
|
||||
<AndroidManifest>Properties\AndroidManifest.xml</AndroidManifest> |
|
||||
</PropertyGroup> |
</PropertyGroup> |
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
|
||||
<DebugSymbols>True</DebugSymbols> |
|
||||
<DebugType>full</DebugType> |
|
||||
<Optimize>false</Optimize> |
|
||||
<OutputPath>bin\Debug\</OutputPath> |
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants> |
|
||||
<ErrorReport>prompt</ErrorReport> |
|
||||
<WarningLevel>4</WarningLevel> |
|
||||
<AndroidUseSharedRuntime>True</AndroidUseSharedRuntime> |
|
||||
<AndroidLinkMode>None</AndroidLinkMode> |
|
||||
<EmbedAssembliesIntoApk>True</EmbedAssembliesIntoApk> |
|
||||
<BundleAssemblies>False</BundleAssemblies> |
|
||||
<AndroidCreatePackagePerAbi>False</AndroidCreatePackagePerAbi> |
|
||||
<AndroidSupportedAbis>armeabi-v7a;x86;x86_64</AndroidSupportedAbis> |
|
||||
<Debugger>Xamarin</Debugger> |
|
||||
<AndroidEnableMultiDex>False</AndroidEnableMultiDex> |
|
||||
<AotAssemblies>False</AotAssemblies> |
|
||||
<EnableLLVM>False</EnableLLVM> |
|
||||
<EnableProguard>False</EnableProguard> |
|
||||
</PropertyGroup> |
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
|
||||
<DebugType>pdbonly</DebugType> |
|
||||
<Optimize>true</Optimize> |
|
||||
<OutputPath>bin\Release\</OutputPath> |
|
||||
<DefineConstants>TRACE</DefineConstants> |
|
||||
<ErrorReport>prompt</ErrorReport> |
|
||||
<WarningLevel>4</WarningLevel> |
|
||||
<AndroidUseSharedRuntime>False</AndroidUseSharedRuntime> |
|
||||
<AndroidLinkMode>Full</AndroidLinkMode> |
|
||||
<EmbedAssembliesIntoApk>True</EmbedAssembliesIntoApk> |
|
||||
<BundleAssemblies>False</BundleAssemblies> |
|
||||
<AndroidCreatePackagePerAbi>False</AndroidCreatePackagePerAbi> |
|
||||
<AndroidSupportedAbis>armeabi-v7a,x86;x86_64</AndroidSupportedAbis> |
|
||||
<Debugger>Xamarin</Debugger> |
|
||||
<AotAssemblies>False</AotAssemblies> |
|
||||
<EnableLLVM>False</EnableLLVM> |
|
||||
<AndroidEnableMultiDex>False</AndroidEnableMultiDex> |
|
||||
<EnableProguard>False</EnableProguard> |
|
||||
<DebugSymbols>False</DebugSymbols> |
|
||||
</PropertyGroup> |
|
||||
<ItemGroup> |
|
||||
<Reference Include="Mono.Android" /> |
|
||||
<Reference Include="mscorlib" /> |
|
||||
<Reference Include="System" /> |
|
||||
<Reference Include="System.Core" /> |
|
||||
<Reference Include="System.Xml.Linq" /> |
|
||||
<Reference Include="System.Xml" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup> |
|
||||
<Compile Include="MainActivity.cs" /> |
|
||||
<Compile Include="Resources\Resource.Designer.cs" /> |
|
||||
<Compile Include="Properties\AssemblyInfo.cs" /> |
|
||||
<Compile Include="SplashActivity.cs" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup> |
<ItemGroup> |
||||
<None Include="Resources\AboutResources.txt" /> |
<None Remove="Assets\AboutAssets.txt" /> |
||||
<None Include="Assets\AboutAssets.txt" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup> |
|
||||
<AndroidResource Include="Resources\drawable\splash_screen.xml" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup> |
|
||||
<AndroidResource Include="Resources\values\colors.xml" /> |
|
||||
<AndroidResource Include="Resources\values\styles.xml" /> |
|
||||
</ItemGroup> |
</ItemGroup> |
||||
<ItemGroup> |
<ItemGroup> |
||||
<AndroidResource Include="..\..\build\Assets\Icon.png"> |
<AndroidResource Include="..\..\build\Assets\Icon.png"> |
||||
<Link>Resources\drawable\Icon.png</Link> |
<Link>Resources\drawable\Icon.png</Link> |
||||
</AndroidResource> |
</AndroidResource> |
||||
</ItemGroup> |
</ItemGroup> |
||||
|
|
||||
|
<PropertyGroup Condition="'$(Configuration)'=='Release' and '$(TF_BUILD)' == ''"> |
||||
|
<DebugSymbols>True</DebugSymbols> |
||||
|
<RunAOTCompilation>True</RunAOTCompilation> |
||||
|
<EnableLLVM>True</EnableLLVM> |
||||
|
<AndroidEnableProfiledAot>True</AndroidEnableProfiledAot> |
||||
|
</PropertyGroup> |
||||
|
|
||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
||||
|
<EmbedAssembliesIntoApk>False</EmbedAssembliesIntoApk> |
||||
|
<RunAOTCompilation>False</RunAOTCompilation> |
||||
|
</PropertyGroup> |
||||
|
|
||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
||||
|
<EmbedAssembliesIntoApk>True</EmbedAssembliesIntoApk> |
||||
|
</PropertyGroup> |
||||
|
|
||||
<ItemGroup> |
<ItemGroup> |
||||
<None Include="Properties\AndroidManifest.xml" /> |
<PackageReference Include="Xamarin.AndroidX.AppCompat" Version="1.3.1.3" /> |
||||
|
<PackageReference Include="Xamarin.AndroidX.Lifecycle.ViewModel" Version="2.3.1.3" /> |
||||
</ItemGroup> |
</ItemGroup> |
||||
|
|
||||
<ItemGroup> |
<ItemGroup> |
||||
<ProjectReference Include="..\..\src\Android\Avalonia.Android\Avalonia.Android.csproj"> |
<ProjectReference Include="..\..\src\Android\Avalonia.Android\Avalonia.Android.csproj" /> |
||||
<Project>{7B92AF71-6287-4693-9DCB-BD5B6E927E23}</Project> |
<ProjectReference Include="..\ControlCatalog\ControlCatalog.csproj" /> |
||||
<Name>Avalonia.Android</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Avalonia.Animation\Avalonia.Animation.csproj"> |
|
||||
<Project>{d211e587-d8bc-45b9-95a4-f297c8fa5200}</Project> |
|
||||
<Name>Avalonia.Animation</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Avalonia.Base\Avalonia.Base.csproj"> |
|
||||
<Project>{b09b78d8-9b26-48b0-9149-d64a2f120f3f}</Project> |
|
||||
<Name>Avalonia.Base</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Avalonia.Controls\Avalonia.Controls.csproj"> |
|
||||
<Project>{d2221c82-4a25-4583-9b43-d791e3f6820c}</Project> |
|
||||
<Name>Avalonia.Controls</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj"> |
|
||||
<Project>{7062ae20-5dcc-4442-9645-8195bdece63e}</Project> |
|
||||
<Name>Avalonia.Diagnostics</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Avalonia.Input\Avalonia.Input.csproj"> |
|
||||
<Project>{62024b2d-53eb-4638-b26b-85eeaa54866e}</Project> |
|
||||
<Name>Avalonia.Input</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Avalonia.Interactivity\Avalonia.Interactivity.csproj"> |
|
||||
<Project>{6b0ed19d-a08b-461c-a9d9-a9ee40b0c06b}</Project> |
|
||||
<Name>Avalonia.Interactivity</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Avalonia.Layout\Avalonia.Layout.csproj"> |
|
||||
<Project>{42472427-4774-4c81-8aff-9f27b8e31721}</Project> |
|
||||
<Name>Avalonia.Layout</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Avalonia.Themes.Fluent\Avalonia.Themes.Fluent.csproj"> |
|
||||
<Project>{c42d2fc1-a531-4ed4-84b9-89aec7c962fc}</Project> |
|
||||
<Name>Avalonia.Themes.Fluent</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Avalonia.Visuals\Avalonia.Visuals.csproj"> |
|
||||
<Project>{eb582467-6abb-43a1-b052-e981ba910e3a}</Project> |
|
||||
<Name>Avalonia.Visuals</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Avalonia.Styling\Avalonia.Styling.csproj"> |
|
||||
<Project>{f1baa01a-f176-4c6a-b39d-5b40bb1b148f}</Project> |
|
||||
<Name>Avalonia.Styling</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Avalonia.Themes.Default\Avalonia.Themes.Default.csproj"> |
|
||||
<Project>{3e10a5fa-e8da-48b1-ad44-6a5b6cb7750f}</Project> |
|
||||
<Name>Avalonia.Themes.Default</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Markup\Avalonia.Markup.Xaml\Avalonia.Markup.Xaml.csproj"> |
|
||||
<Project>{3e53a01a-b331-47f3-b828-4a5717e77a24}</Project> |
|
||||
<Name>Avalonia.Markup.Xaml</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Markup\Avalonia.Markup\Avalonia.Markup.csproj"> |
|
||||
<Project>{6417e941-21bc-467b-a771-0de389353ce6}</Project> |
|
||||
<Name>Avalonia.Markup</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Skia\Avalonia.Skia\Avalonia.Skia.csproj"> |
|
||||
<Project>{7d2d3083-71dd-4cc9-8907-39a0d86fb322}</Project> |
|
||||
<Name>Avalonia.Skia</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\ControlCatalog\ControlCatalog.csproj"> |
|
||||
<Project>{d0a739b9-3c68-4ba6-a328-41606954b6bd}</Project> |
|
||||
<Name>ControlCatalog</Name> |
|
||||
</ProjectReference> |
|
||||
</ItemGroup> |
</ItemGroup> |
||||
<Import Project="..\..\build\Rx.props" /> |
|
||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" /> |
|
||||
<Import Project="..\..\build\AndroidWorkarounds.props" /> |
|
||||
<Import Project="..\..\build\LegacyProject.targets" /> |
|
||||
</Project> |
</Project> |
||||
|
|||||
@ -1,5 +1,4 @@ |
|||||
<?xml version="1.0" encoding="utf-8"?> |
<?xml version="1.0" encoding="utf-8"?> |
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="ControlCatalog.Android" android:versionCode="1" android:versionName="1.0" android:installLocation="auto"> |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="auto"> |
||||
<uses-sdk android:targetSdkVersion="30" /> |
<application android:label="ControlCatalog.Android" android:icon="@drawable/Icon"></application> |
||||
<application android:label="ControlCatalog.Android"></application> |
</manifest> |
||||
</manifest> |
|
||||
|
|||||
@ -1,30 +0,0 @@ |
|||||
using System.Reflection; |
|
||||
using System.Runtime.CompilerServices; |
|
||||
using System.Runtime.InteropServices; |
|
||||
using Android.App; |
|
||||
|
|
||||
// General Information about an assembly is controlled through the following
|
|
||||
// set of attributes. Change these attribute values to modify the information
|
|
||||
// associated with an assembly.
|
|
||||
[assembly: AssemblyTitle("ControlCatalog.Android")] |
|
||||
[assembly: AssemblyDescription("")] |
|
||||
[assembly: AssemblyConfiguration("")] |
|
||||
[assembly: AssemblyCompany("")] |
|
||||
[assembly: AssemblyProduct("ControlCatalog.Android")] |
|
||||
[assembly: AssemblyCopyright("Copyright © 2016")] |
|
||||
[assembly: AssemblyTrademark("")] |
|
||||
[assembly: AssemblyCulture("")] |
|
||||
[assembly: ComVisible(false)] |
|
||||
|
|
||||
// Version information for an assembly consists of the following four values:
|
|
||||
//
|
|
||||
// Major Version
|
|
||||
// Minor Version
|
|
||||
// Build Number
|
|
||||
// Revision
|
|
||||
//
|
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
|
||||
// by using the '*' as shown below:
|
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
|
||||
[assembly: AssemblyVersion("1.0.0.0")] |
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")] |
|
||||
@ -1,101 +0,0 @@ |
|||||
#pragma warning disable 1591
|
|
||||
//------------------------------------------------------------------------------
|
|
||||
// <auto-generated>
|
|
||||
// This code was generated by a tool.
|
|
||||
//
|
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
|
||||
// the code is regenerated.
|
|
||||
// </auto-generated>
|
|
||||
//------------------------------------------------------------------------------
|
|
||||
|
|
||||
[assembly: global::Android.Runtime.ResourceDesignerAttribute("ControlCatalog.Android.Resource", IsApplication=true)] |
|
||||
|
|
||||
namespace ControlCatalog.Android |
|
||||
{ |
|
||||
|
|
||||
|
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Android.Build.Tasks", "12.1.99.62")] |
|
||||
public partial class Resource |
|
||||
{ |
|
||||
|
|
||||
static Resource() |
|
||||
{ |
|
||||
global::Android.Runtime.ResourceIdManager.UpdateIdValues(); |
|
||||
} |
|
||||
|
|
||||
public static void UpdateIdValues() |
|
||||
{ |
|
||||
} |
|
||||
|
|
||||
public partial class Attribute |
|
||||
{ |
|
||||
|
|
||||
static Attribute() |
|
||||
{ |
|
||||
global::Android.Runtime.ResourceIdManager.UpdateIdValues(); |
|
||||
} |
|
||||
|
|
||||
private Attribute() |
|
||||
{ |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
public partial class Color |
|
||||
{ |
|
||||
|
|
||||
// aapt resource value: 0x7F010000
|
|
||||
public const int splash_background = 2130771968; |
|
||||
|
|
||||
static Color() |
|
||||
{ |
|
||||
global::Android.Runtime.ResourceIdManager.UpdateIdValues(); |
|
||||
} |
|
||||
|
|
||||
private Color() |
|
||||
{ |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
public partial class Drawable |
|
||||
{ |
|
||||
|
|
||||
// aapt resource value: 0x7F020000
|
|
||||
public const int Icon = 2130837504; |
|
||||
|
|
||||
// aapt resource value: 0x7F020001
|
|
||||
public const int splash_screen = 2130837505; |
|
||||
|
|
||||
static Drawable() |
|
||||
{ |
|
||||
global::Android.Runtime.ResourceIdManager.UpdateIdValues(); |
|
||||
} |
|
||||
|
|
||||
private Drawable() |
|
||||
{ |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
public partial class Style |
|
||||
{ |
|
||||
|
|
||||
// aapt resource value: 0x7F030000
|
|
||||
public const int MyTheme = 2130903040; |
|
||||
|
|
||||
// aapt resource value: 0x7F030001
|
|
||||
public const int MyTheme_NoActionBar = 2130903041; |
|
||||
|
|
||||
// aapt resource value: 0x7F030002
|
|
||||
public const int MyTheme_Splash = 2130903042; |
|
||||
|
|
||||
static Style() |
|
||||
{ |
|
||||
global::Android.Runtime.ResourceIdManager.UpdateIdValues(); |
|
||||
} |
|
||||
|
|
||||
private Style() |
|
||||
{ |
|
||||
} |
|
||||
} |
|
||||
} |
|
||||
} |
|
||||
#pragma warning restore 1591
|
|
||||
@ -0,0 +1,7 @@ |
|||||
|
<Directives> |
||||
|
<Application> |
||||
|
<Assembly Name="ControlCatalog" Dynamic="Required All"></Assembly> |
||||
|
<Assembly Name="Avalonia.Themes.Default" Dynamic="Required All"></Assembly> |
||||
|
<Assembly Name="Avalonia.Themes.Fluent" Dynamic="Required All"></Assembly> |
||||
|
</Application> |
||||
|
</Directives> |
||||
@ -1,186 +1,16 @@ |
|||||
<?xml version="1.0" encoding="utf-8"?> |
<Project Sdk="Microsoft.NET.Sdk"> |
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|
||||
<PropertyGroup> |
<PropertyGroup> |
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
|
||||
<Platform Condition=" '$(Platform)' == '' ">iPhoneSimulator</Platform> |
|
||||
<ProjectGuid>{57E0455D-D565-44BB-B069-EE1AA20F8337}</ProjectGuid> |
|
||||
<ProjectTypeGuids>{FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> |
|
||||
<OutputType>Exe</OutputType> |
<OutputType>Exe</OutputType> |
||||
<RootNamespace>ControlCatalog.iOS</RootNamespace> |
<ProvisioningType>manual</ProvisioningType> |
||||
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix> |
<TargetFramework>net6.0-ios</TargetFramework> |
||||
<AssemblyName>ControlCatalogiOS</AssemblyName> |
<SupportedOSPlatformVersion>10.0</SupportedOSPlatformVersion> |
||||
<MtouchEnableSGenConc>true</MtouchEnableSGenConc> |
<!-- temporal workaround for our GL interface backend --> |
||||
<MtouchHttpClientHandler>NSUrlSessionHandler</MtouchHttpClientHandler> |
<UseInterpreter>True</UseInterpreter> |
||||
<RestoreProjectStyle>PackageReference</RestoreProjectStyle> |
<RuntimeIdentifier>iossimulator-x64</RuntimeIdentifier> |
||||
<ProvisioningType>automatic</ProvisioningType> |
<!-- <RuntimeIdentifier>ios-arm64</RuntimeIdentifier>--> |
||||
</PropertyGroup> |
</PropertyGroup> |
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhoneSimulator' "> |
|
||||
<DebugSymbols>true</DebugSymbols> |
|
||||
<DebugType>full</DebugType> |
|
||||
<Optimize>false</Optimize> |
|
||||
<OutputPath>bin\iPhoneSimulator\Debug</OutputPath> |
|
||||
<DefineConstants>DEBUG</DefineConstants> |
|
||||
<ErrorReport>prompt</ErrorReport> |
|
||||
<WarningLevel>4</WarningLevel> |
|
||||
<ConsolePause>false</ConsolePause> |
|
||||
<MtouchArch>x86_64</MtouchArch> |
|
||||
<MtouchLink>None</MtouchLink> |
|
||||
<MtouchDebug>True</MtouchDebug> |
|
||||
<MtouchSdkVersion>9.1</MtouchSdkVersion> |
|
||||
<MtouchProfiling>False</MtouchProfiling> |
|
||||
<MtouchFastDev>False</MtouchFastDev> |
|
||||
<MtouchNoSymbolStrip>False</MtouchNoSymbolStrip> |
|
||||
<MtouchUseLlvm>False</MtouchUseLlvm> |
|
||||
<MtouchUseThumb>False</MtouchUseThumb> |
|
||||
<MtouchEnableBitcode>False</MtouchEnableBitcode> |
|
||||
<MtouchUseSGen>False</MtouchUseSGen> |
|
||||
<MtouchUseRefCounting>False</MtouchUseRefCounting> |
|
||||
<OptimizePNGs>True</OptimizePNGs> |
|
||||
<MtouchTlsProvider>Default</MtouchTlsProvider> |
|
||||
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler> |
|
||||
<MtouchFloat32>False</MtouchFloat32> |
|
||||
</PropertyGroup> |
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' "> |
|
||||
<DebugType>none</DebugType> |
|
||||
<Optimize>true</Optimize> |
|
||||
<OutputPath>bin\iPhoneSimulator\Release</OutputPath> |
|
||||
<ErrorReport>prompt</ErrorReport> |
|
||||
<WarningLevel>4</WarningLevel> |
|
||||
<MtouchLink>None</MtouchLink> |
|
||||
<MtouchArch>x86_64</MtouchArch> |
|
||||
<ConsolePause>false</ConsolePause> |
|
||||
</PropertyGroup> |
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' "> |
|
||||
<DebugSymbols>true</DebugSymbols> |
|
||||
<DebugType>full</DebugType> |
|
||||
<Optimize>false</Optimize> |
|
||||
<OutputPath>bin\iPhone\Debug</OutputPath> |
|
||||
<DefineConstants>DEBUG</DefineConstants> |
|
||||
<ErrorReport>prompt</ErrorReport> |
|
||||
<WarningLevel>4</WarningLevel> |
|
||||
<ConsolePause>false</ConsolePause> |
|
||||
<MtouchArch>ARMv7, ARM64</MtouchArch> |
|
||||
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements> |
|
||||
<CodesignKey>iPhone Developer</CodesignKey> |
|
||||
<MtouchDebug>true</MtouchDebug> |
|
||||
</PropertyGroup> |
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' "> |
|
||||
<DebugType>none</DebugType> |
|
||||
<Optimize>true</Optimize> |
|
||||
<OutputPath>bin\iPhone\Release</OutputPath> |
|
||||
<ErrorReport>prompt</ErrorReport> |
|
||||
<WarningLevel>4</WarningLevel> |
|
||||
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements> |
|
||||
<MtouchArch>ARMv7, ARM64</MtouchArch> |
|
||||
<ConsolePause>false</ConsolePause> |
|
||||
<CodesignKey>iPhone Developer</CodesignKey> |
|
||||
</PropertyGroup> |
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Ad-Hoc|iPhone' "> |
|
||||
<DebugType>none</DebugType> |
|
||||
<Optimize>True</Optimize> |
|
||||
<OutputPath>bin\iPhone\Ad-Hoc</OutputPath> |
|
||||
<ErrorReport>prompt</ErrorReport> |
|
||||
<WarningLevel>4</WarningLevel> |
|
||||
<ConsolePause>False</ConsolePause> |
|
||||
<MtouchArch>ARMv7, ARM64</MtouchArch> |
|
||||
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements> |
|
||||
<BuildIpa>True</BuildIpa> |
|
||||
<CodesignProvision>Automatic:AdHoc</CodesignProvision> |
|
||||
<CodesignKey>iPhone Distribution</CodesignKey> |
|
||||
</PropertyGroup> |
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'AppStore|iPhone' "> |
|
||||
<DebugType>none</DebugType> |
|
||||
<Optimize>True</Optimize> |
|
||||
<OutputPath>bin\iPhone\AppStore</OutputPath> |
|
||||
<ErrorReport>prompt</ErrorReport> |
|
||||
<WarningLevel>4</WarningLevel> |
|
||||
<ConsolePause>False</ConsolePause> |
|
||||
<MtouchArch>ARMv7, ARM64</MtouchArch> |
|
||||
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements> |
|
||||
<CodesignProvision>Automatic:AppStore</CodesignProvision> |
|
||||
<CodesignKey>iPhone Distribution</CodesignKey> |
|
||||
</PropertyGroup> |
|
||||
<ItemGroup> |
|
||||
<Compile Include="Main.cs" /> |
|
||||
<Compile Include="AppDelegate.cs" /> |
|
||||
<None Include="Info.plist" /> |
|
||||
<Compile Include="Properties\AssemblyInfo.cs" /> |
|
||||
<InterfaceDefinition Include="Resources\LaunchScreen.xib" /> |
|
||||
<Content Include="Entitlements.plist" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup> |
|
||||
<Reference Include="System" /> |
|
||||
<Reference Include="System.Xml" /> |
|
||||
<Reference Include="System.Core" /> |
|
||||
<Reference Include="Xamarin.iOS" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup> |
<ItemGroup> |
||||
<ProjectReference Include="..\..\src\iOS\Avalonia.iOS\Avalonia.iOS.csproj"> |
<ProjectReference Include="..\..\src\iOS\Avalonia.iOS\Avalonia.iOS.csproj" /> |
||||
<Project>{4488AD85-1495-4809-9AA4-DDFE0A48527E}</Project> |
<ProjectReference Include="..\ControlCatalog\ControlCatalog.csproj" /> |
||||
<Name>Avalonia.iOS</Name> |
|
||||
<IsAppExtension>false</IsAppExtension> |
|
||||
<IsWatchApp>false</IsWatchApp> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Markup\Avalonia.Markup.Xaml\Avalonia.Markup.Xaml.csproj"> |
|
||||
<Project>{3E53A01A-B331-47F3-B828-4A5717E77A24}</Project> |
|
||||
<Name>Avalonia.Markup.Xaml</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Markup\Avalonia.Markup\Avalonia.Markup.csproj"> |
|
||||
<Project>{6417E941-21BC-467B-A771-0DE389353CE6}</Project> |
|
||||
<Name>Avalonia.Markup</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Avalonia.Animation\Avalonia.Animation.csproj"> |
|
||||
<Project>{D211E587-D8BC-45B9-95A4-F297C8FA5200}</Project> |
|
||||
<Name>Avalonia.Animation</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Avalonia.Base\Avalonia.Base.csproj"> |
|
||||
<Project>{B09B78D8-9B26-48B0-9149-D64A2F120F3F}</Project> |
|
||||
<Name>Avalonia.Base</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Avalonia.Controls\Avalonia.Controls.csproj"> |
|
||||
<Project>{D2221C82-4A25-4583-9B43-D791E3F6820C}</Project> |
|
||||
<Name>Avalonia.Controls</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj"> |
|
||||
<Project>{7062AE20-5DCC-4442-9645-8195BDECE63E}</Project> |
|
||||
<Name>Avalonia.Diagnostics</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Avalonia.Input\Avalonia.Input.csproj"> |
|
||||
<Project>{62024B2D-53EB-4638-B26B-85EEAA54866E}</Project> |
|
||||
<Name>Avalonia.Input</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Avalonia.Interactivity\Avalonia.Interactivity.csproj"> |
|
||||
<Project>{6B0ED19D-A08B-461C-A9D9-A9EE40B0C06B}</Project> |
|
||||
<Name>Avalonia.Interactivity</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Avalonia.Layout\Avalonia.Layout.csproj"> |
|
||||
<Project>{42472427-4774-4C81-8AFF-9F27B8E31721}</Project> |
|
||||
<Name>Avalonia.Layout</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Avalonia.Visuals\Avalonia.Visuals.csproj"> |
|
||||
<Project>{EB582467-6ABB-43A1-B052-E981BA910E3A}</Project> |
|
||||
<Name>Avalonia.Visuals</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Avalonia.Styling\Avalonia.Styling.csproj"> |
|
||||
<Project>{F1BAA01A-F176-4C6A-B39D-5B40BB1B148F}</Project> |
|
||||
<Name>Avalonia.Styling</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Avalonia.Themes.Default\Avalonia.Themes.Default.csproj"> |
|
||||
<Project>{3E10A5FA-E8DA-48B1-AD44-6A5B6CB7750F}</Project> |
|
||||
<Name>Avalonia.Themes.Default</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\src\Skia\Avalonia.Skia\Avalonia.Skia.csproj"> |
|
||||
<Project>{7d2d3083-71dd-4cc9-8907-39a0d86fb322}</Project> |
|
||||
<Name>Avalonia.Skia</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\ControlCatalog\ControlCatalog.csproj"> |
|
||||
<Project>{d0a739b9-3c68-4ba6-a328-41606954b6bd}</Project> |
|
||||
<Name>ControlCatalog</Name> |
|
||||
</ProjectReference> |
|
||||
<PackageReference Include="SkiaSharp.HarfBuzz" Version="2.80.2-preview.33" /> |
|
||||
</ItemGroup> |
</ItemGroup> |
||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" /> |
|
||||
<Import Project="..\..\build\LegacyProject.targets" /> |
|
||||
<Import Project="..\..\build\SkiaSharp.props" /> |
|
||||
<Import Project="..\..\build\HarfBuzzSharp.props" /> |
|
||||
</Project> |
</Project> |
||||
|
|||||
@ -1,36 +0,0 @@ |
|||||
using System.Reflection; |
|
||||
using System.Runtime.CompilerServices; |
|
||||
using System.Runtime.InteropServices; |
|
||||
|
|
||||
// General Information about an assembly is controlled through the following
|
|
||||
// set of attributes. Change these attribute values to modify the information
|
|
||||
// associated with an assembly.
|
|
||||
[assembly: AssemblyTitle("ControlCatalog.iOS")] |
|
||||
[assembly: AssemblyDescription("")] |
|
||||
[assembly: AssemblyConfiguration("")] |
|
||||
[assembly: AssemblyCompany("")] |
|
||||
[assembly: AssemblyProduct("ControlCatalog.iOS")] |
|
||||
[assembly: AssemblyCopyright("Copyright © 2016")] |
|
||||
[assembly: AssemblyTrademark("")] |
|
||||
[assembly: AssemblyCulture("")] |
|
||||
|
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
|
||||
// to COM components. If you need to access a type in this assembly from
|
|
||||
// COM, set the ComVisible attribute to true on that type.
|
|
||||
[assembly: ComVisible(false)] |
|
||||
|
|
||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
|
||||
[assembly: Guid("57e0455d-d565-44bb-b069-ee1aa20f8337")] |
|
||||
|
|
||||
// Version information for an assembly consists of the following four values:
|
|
||||
//
|
|
||||
// Major Version
|
|
||||
// Minor Version
|
|
||||
// Build Number
|
|
||||
// Revision
|
|
||||
//
|
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
|
||||
// by using the '*' as shown below:
|
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
|
||||
[assembly: AssemblyVersion("1.0.0.0")] |
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")] |
|
||||
@ -0,0 +1,18 @@ |
|||||
|
using System; |
||||
|
using System.Globalization; |
||||
|
using Avalonia.Data.Converters; |
||||
|
|
||||
|
namespace ControlCatalog.Converter; |
||||
|
|
||||
|
public class MathSubtractConverter : IValueConverter |
||||
|
{ |
||||
|
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) |
||||
|
{ |
||||
|
return (double)value - (double)parameter; |
||||
|
} |
||||
|
|
||||
|
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) |
||||
|
{ |
||||
|
throw new NotSupportedException(); |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,23 @@ |
|||||
|
<UserControl x:Class="ControlCatalog.Pages.ClipboardPage" |
||||
|
xmlns="https://github.com/avaloniaui" |
||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> |
||||
|
<StackPanel Orientation="Vertical" Spacing="4"> |
||||
|
<TextBlock Classes="h2">Example of ClipboardPage capabilities</TextBlock> |
||||
|
|
||||
|
<Button Click="CopyText" Content="Copy text to clipboard" /> |
||||
|
<Button Click="PasteText" Content="Paste text from clipboard" /> |
||||
|
<Button Click="CopyTextDataObject" Content="Copy text to clipboard (data object)" /> |
||||
|
<Button Click="PasteTextDataObject" Content="Paste text from clipboard (data object)" /> |
||||
|
|
||||
|
<Button Click="CopyFilesDataObject" Content="Copy files to clipboard (data object)" /> |
||||
|
<Button Click="PasteFilesDataObject" Content="Paste files from clipboard (data object)" /> |
||||
|
|
||||
|
<Button Click="GetFormats" Content="Get clipboard formats" /> |
||||
|
<Button Click="Clear" Content="Clear clipboard" /> |
||||
|
|
||||
|
<TextBox x:Name="ClipboardContent" |
||||
|
MinHeight="100" |
||||
|
AcceptsReturn="True" |
||||
|
Watermark="Text to copy of file names per line" /> |
||||
|
</StackPanel> |
||||
|
</UserControl> |
||||
@ -0,0 +1,77 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
|
||||
|
using Avalonia; |
||||
|
using Avalonia.Controls; |
||||
|
using Avalonia.Input; |
||||
|
using Avalonia.Interactivity; |
||||
|
using Avalonia.Markup.Xaml; |
||||
|
|
||||
|
namespace ControlCatalog.Pages |
||||
|
{ |
||||
|
public partial class ClipboardPage : UserControl |
||||
|
{ |
||||
|
public ClipboardPage() |
||||
|
{ |
||||
|
InitializeComponent(); |
||||
|
} |
||||
|
|
||||
|
private TextBox ClipboardContent => this.Get<TextBox>("ClipboardContent"); |
||||
|
|
||||
|
private void InitializeComponent() |
||||
|
{ |
||||
|
AvaloniaXamlLoader.Load(this); |
||||
|
} |
||||
|
|
||||
|
private async void CopyText(object sender, RoutedEventArgs args) |
||||
|
{ |
||||
|
await Application.Current.Clipboard.SetTextAsync(ClipboardContent.Text); |
||||
|
} |
||||
|
|
||||
|
private async void PasteText(object sender, RoutedEventArgs args) |
||||
|
{ |
||||
|
ClipboardContent.Text = await Application.Current.Clipboard.GetTextAsync(); |
||||
|
} |
||||
|
|
||||
|
private async void CopyTextDataObject(object sender, RoutedEventArgs args) |
||||
|
{ |
||||
|
var dataObject = new DataObject(); |
||||
|
dataObject.Set(DataFormats.Text, ClipboardContent.Text ?? string.Empty); |
||||
|
await Application.Current.Clipboard.SetDataObjectAsync(dataObject); |
||||
|
} |
||||
|
|
||||
|
private async void PasteTextDataObject(object sender, RoutedEventArgs args) |
||||
|
{ |
||||
|
ClipboardContent.Text = await Application.Current.Clipboard.GetDataAsync(DataFormats.Text) as string ?? string.Empty; |
||||
|
} |
||||
|
|
||||
|
private async void CopyFilesDataObject(object sender, RoutedEventArgs args) |
||||
|
{ |
||||
|
var files = ClipboardContent.Text.Split(new[] { Environment.NewLine }, StringSplitOptions.RemoveEmptyEntries); |
||||
|
if (files.Length == 0) |
||||
|
{ |
||||
|
return; |
||||
|
} |
||||
|
var dataObject = new DataObject(); |
||||
|
dataObject.Set(DataFormats.FileNames, files); |
||||
|
await Application.Current.Clipboard.SetDataObjectAsync(dataObject); |
||||
|
} |
||||
|
|
||||
|
private async void PasteFilesDataObject(object sender, RoutedEventArgs args) |
||||
|
{ |
||||
|
var fiels = await Application.Current.Clipboard.GetDataAsync(DataFormats.FileNames) as IEnumerable<string>; |
||||
|
ClipboardContent.Text = fiels != null ? string.Join(Environment.NewLine, fiels) : string.Empty; |
||||
|
} |
||||
|
|
||||
|
private async void GetFormats(object sender, RoutedEventArgs args) |
||||
|
{ |
||||
|
var formats = await Application.Current.Clipboard.GetFormatsAsync(); |
||||
|
ClipboardContent.Text = string.Join(Environment.NewLine, formats); |
||||
|
} |
||||
|
|
||||
|
private async void Clear(object sender, RoutedEventArgs args) |
||||
|
{ |
||||
|
await Application.Current.Clipboard.ClearAsync(); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,82 @@ |
|||||
|
<UserControl xmlns="https://github.com/avaloniaui" |
||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
||||
|
xmlns:vm="using:ControlCatalog.ViewModels" |
||||
|
xmlns:converter="clr-namespace:ControlCatalog.Converter" |
||||
|
xmlns:system="using:System" |
||||
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450" |
||||
|
x:DataType="vm:TransitioningContentControlPageViewModel" |
||||
|
x:CompileBindings="True" |
||||
|
x:Class="ControlCatalog.Pages.TransitioningContentControlPage"> |
||||
|
|
||||
|
<UserControl.DataContext> |
||||
|
<vm:TransitioningContentControlPageViewModel /> |
||||
|
</UserControl.DataContext> |
||||
|
|
||||
|
<UserControl.Styles> |
||||
|
<Style Selector="HeaderedContentControl"> |
||||
|
<Setter Property="Template"> |
||||
|
<Setter.Value> |
||||
|
<ControlTemplate> |
||||
|
<Grid> |
||||
|
<Grid.ColumnDefinitions> |
||||
|
<ColumnDefinition Width="Auto" SharedSizeGroup="HeaderCol" /> |
||||
|
<ColumnDefinition Width="*" /> |
||||
|
</Grid.ColumnDefinitions> |
||||
|
<ContentPresenter Content="{TemplateBinding Header}" |
||||
|
Grid.Column="0" |
||||
|
VerticalAlignment="Center" /> |
||||
|
<ContentPresenter Content="{TemplateBinding Content}" |
||||
|
Grid.Column="1" |
||||
|
VerticalAlignment="Center" /> |
||||
|
</Grid> |
||||
|
</ControlTemplate> |
||||
|
</Setter.Value> |
||||
|
</Setter> |
||||
|
</Style> |
||||
|
</UserControl.Styles> |
||||
|
|
||||
|
<UserControl.Resources> |
||||
|
<converter:MathSubtractConverter x:Key="MathSubtractConverter" /> |
||||
|
<system:Double x:Key="TopMargin">8</system:Double> |
||||
|
</UserControl.Resources> |
||||
|
|
||||
|
<DockPanel LastChildFill="True" |
||||
|
Height="{Binding Path=Bounds.Height, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Grid}, Converter={StaticResource MathSubtractConverter},ConverterParameter={StaticResource TopMargin}}"> |
||||
|
|
||||
|
<TextBlock DockPanel.Dock="Top" Classes="h2">The TransitioningContentControl control allows you to show a page transition whenever the Content changes.</TextBlock> |
||||
|
|
||||
|
<ExperimentalAcrylicBorder DockPanel.Dock="Bottom" Margin="10" CornerRadius="5" > |
||||
|
<ExperimentalAcrylicBorder.Material> |
||||
|
<ExperimentalAcrylicMaterial BackgroundSource="Digger" TintColor="White" /> |
||||
|
</ExperimentalAcrylicBorder.Material> |
||||
|
|
||||
|
<StackPanel Margin="5" Spacing="5" Grid.IsSharedSizeScope="True"> |
||||
|
<HeaderedContentControl Header="Select a transition"> |
||||
|
<ComboBox Items="{Binding PageTransitions}" SelectedItem="{Binding SelectedTransition}" /> |
||||
|
</HeaderedContentControl> |
||||
|
<HeaderedContentControl Header="Duration"> |
||||
|
<NumericUpDown Value="{Binding Duration}" Increment="250" Minimum="100" /> |
||||
|
</HeaderedContentControl> |
||||
|
<HeaderedContentControl Header="Clip to Bounds"> |
||||
|
<ToggleSwitch IsChecked="{Binding ClipToBounds}" /> |
||||
|
</HeaderedContentControl> |
||||
|
</StackPanel> |
||||
|
</ExperimentalAcrylicBorder> |
||||
|
|
||||
|
<Button DockPanel.Dock="Left" Command="{Binding PrevImage}" Content="<" /> |
||||
|
<Button DockPanel.Dock="Right" Command="{Binding NextImage}" Content=">" /> |
||||
|
|
||||
|
<Border ClipToBounds="{Binding ClipToBounds}" Margin="5"> |
||||
|
<TransitioningContentControl Content="{Binding SelectedImage}" |
||||
|
PageTransition="{Binding SelectedTransition.Transition}" > |
||||
|
<TransitioningContentControl.ContentTemplate> |
||||
|
<DataTemplate DataType="Bitmap"> |
||||
|
<Image Source="{Binding}" /> |
||||
|
</DataTemplate> |
||||
|
</TransitioningContentControl.ContentTemplate> |
||||
|
</TransitioningContentControl> |
||||
|
</Border> |
||||
|
</DockPanel> |
||||
|
</UserControl> |
||||
@ -0,0 +1,19 @@ |
|||||
|
using Avalonia; |
||||
|
using Avalonia.Controls; |
||||
|
using Avalonia.Markup.Xaml; |
||||
|
|
||||
|
namespace ControlCatalog.Pages |
||||
|
{ |
||||
|
public partial class TransitioningContentControlPage : UserControl |
||||
|
{ |
||||
|
public TransitioningContentControlPage() |
||||
|
{ |
||||
|
InitializeComponent(); |
||||
|
} |
||||
|
|
||||
|
private void InitializeComponent() |
||||
|
{ |
||||
|
AvaloniaXamlLoader.Load(this); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,309 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.IO; |
||||
|
using System.Text; |
||||
|
using System.Threading; |
||||
|
using System.Threading.Tasks; |
||||
|
using Avalonia; |
||||
|
using Avalonia.Animation; |
||||
|
using Avalonia.Media; |
||||
|
using Avalonia.Media.Imaging; |
||||
|
using Avalonia.Platform; |
||||
|
using Avalonia.Styling; |
||||
|
using Avalonia.VisualTree; |
||||
|
using MiniMvvm; |
||||
|
|
||||
|
namespace ControlCatalog.ViewModels |
||||
|
{ |
||||
|
public class TransitioningContentControlPageViewModel : ViewModelBase |
||||
|
{ |
||||
|
public TransitioningContentControlPageViewModel() |
||||
|
{ |
||||
|
var assetLoader = AvaloniaLocator.Current.GetService<IAssetLoader>(); |
||||
|
|
||||
|
var images = new string[] |
||||
|
{ |
||||
|
"delicate-arch-896885_640.jpg", |
||||
|
"hirsch-899118_640.jpg", |
||||
|
"maple-leaf-888807_640.jpg" |
||||
|
}; |
||||
|
|
||||
|
foreach (var image in images) |
||||
|
{ |
||||
|
var path = $"avares://ControlCatalog/Assets/{image}"; |
||||
|
Images.Add(new Bitmap(assetLoader.Open(new Uri(path)))); |
||||
|
} |
||||
|
|
||||
|
SetupTransitions(); |
||||
|
|
||||
|
SelectedTransition = PageTransitions[1]; |
||||
|
SelectedImage = Images[0]; |
||||
|
} |
||||
|
|
||||
|
public List<PageTransition> PageTransitions { get; } = new List<PageTransition>(); |
||||
|
|
||||
|
public List<Bitmap> Images { get; } = new List<Bitmap>(); |
||||
|
|
||||
|
|
||||
|
private Bitmap? _SelectedImage; |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Gets or Sets the selected image
|
||||
|
/// </summary>
|
||||
|
public Bitmap? SelectedImage |
||||
|
{ |
||||
|
get { return _SelectedImage; } |
||||
|
set { this.RaiseAndSetIfChanged(ref _SelectedImage, value); } |
||||
|
} |
||||
|
|
||||
|
|
||||
|
private PageTransition _SelectedTransition; |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Gets or sets the transition to play
|
||||
|
/// </summary>
|
||||
|
public PageTransition SelectedTransition |
||||
|
{ |
||||
|
get { return _SelectedTransition; } |
||||
|
set { this.RaiseAndSetIfChanged(ref _SelectedTransition, value); } |
||||
|
} |
||||
|
|
||||
|
|
||||
|
|
||||
|
private bool _ClipToBounds; |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Gets or sets if the content should be clipped to bounds
|
||||
|
/// </summary>
|
||||
|
public bool ClipToBounds |
||||
|
{ |
||||
|
get { return _ClipToBounds; } |
||||
|
set { this.RaiseAndSetIfChanged(ref _ClipToBounds, value); } |
||||
|
} |
||||
|
|
||||
|
|
||||
|
private int _Duration = 500; |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Gets or Sets the duration
|
||||
|
/// </summary>
|
||||
|
public int Duration |
||||
|
{ |
||||
|
get { return _Duration; } |
||||
|
set |
||||
|
{ |
||||
|
this.RaiseAndSetIfChanged(ref _Duration , value); |
||||
|
SetupTransitions(); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
private void SetupTransitions() |
||||
|
{ |
||||
|
if (PageTransitions.Count == 0) |
||||
|
{ |
||||
|
PageTransitions.AddRange(new[] |
||||
|
{ |
||||
|
new PageTransition("None"), |
||||
|
new PageTransition("CrossFade"), |
||||
|
new PageTransition("Slide horizontally"), |
||||
|
new PageTransition("Slide vertically"), |
||||
|
new PageTransition("Composite"), |
||||
|
new PageTransition("Custom") |
||||
|
}); |
||||
|
} |
||||
|
|
||||
|
PageTransitions[1].Transition = new CrossFade(TimeSpan.FromMilliseconds(Duration)); |
||||
|
PageTransitions[2].Transition = new PageSlide(TimeSpan.FromMilliseconds(Duration), PageSlide.SlideAxis.Horizontal); |
||||
|
PageTransitions[3].Transition = new PageSlide(TimeSpan.FromMilliseconds(Duration), PageSlide.SlideAxis.Vertical); |
||||
|
|
||||
|
var compositeTransition = new CompositePageTransition(); |
||||
|
compositeTransition.PageTransitions.Add(PageTransitions[1].Transition); |
||||
|
compositeTransition.PageTransitions.Add(PageTransitions[2].Transition); |
||||
|
compositeTransition.PageTransitions.Add(PageTransitions[3].Transition); |
||||
|
PageTransitions[4].Transition = compositeTransition; |
||||
|
|
||||
|
PageTransitions[5].Transition = new CustomTransition(TimeSpan.FromMilliseconds(Duration)); |
||||
|
} |
||||
|
|
||||
|
public void NextImage() |
||||
|
{ |
||||
|
var index = Images.IndexOf(SelectedImage) + 1; |
||||
|
|
||||
|
if (index >= Images.Count) |
||||
|
{ |
||||
|
index = 0; |
||||
|
} |
||||
|
|
||||
|
SelectedImage = Images[index]; |
||||
|
} |
||||
|
|
||||
|
public void PrevImage() |
||||
|
{ |
||||
|
var index = Images.IndexOf(SelectedImage) - 1; |
||||
|
|
||||
|
if (index < 0) |
||||
|
{ |
||||
|
index = Images.Count-1; |
||||
|
} |
||||
|
|
||||
|
SelectedImage = Images[index]; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
public class PageTransition : ViewModelBase |
||||
|
{ |
||||
|
public PageTransition(string displayTitle) |
||||
|
{ |
||||
|
DisplayTitle = displayTitle; |
||||
|
} |
||||
|
|
||||
|
public string DisplayTitle { get; } |
||||
|
|
||||
|
|
||||
|
private IPageTransition _Transition; |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Gets or sets the transition
|
||||
|
/// </summary>
|
||||
|
public IPageTransition Transition |
||||
|
{ |
||||
|
get { return _Transition; } |
||||
|
set { this.RaiseAndSetIfChanged(ref _Transition, value); } |
||||
|
} |
||||
|
|
||||
|
public override string ToString() |
||||
|
{ |
||||
|
return DisplayTitle; |
||||
|
} |
||||
|
|
||||
|
} |
||||
|
|
||||
|
public class CustomTransition : IPageTransition |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// Initializes a new instance of the <see cref="CustomTransition"/> class.
|
||||
|
/// </summary>
|
||||
|
public CustomTransition() |
||||
|
{ |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Initializes a new instance of the <see cref="CustomTransition"/> class.
|
||||
|
/// </summary>
|
||||
|
/// <param name="duration">The duration of the animation.</param>
|
||||
|
public CustomTransition(TimeSpan duration) |
||||
|
{ |
||||
|
Duration = duration; |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Gets the duration of the animation.
|
||||
|
/// </summary>
|
||||
|
public TimeSpan Duration { get; set; } |
||||
|
|
||||
|
public async Task Start(Visual from, Visual to, bool forward, CancellationToken cancellationToken) |
||||
|
{ |
||||
|
if (cancellationToken.IsCancellationRequested) |
||||
|
{ |
||||
|
return; |
||||
|
} |
||||
|
|
||||
|
var tasks = new List<Task>(); |
||||
|
var parent = GetVisualParent(from, to); |
||||
|
var scaleProperty = ScaleTransform.ScaleYProperty; |
||||
|
|
||||
|
if (from != null) |
||||
|
{ |
||||
|
var animation = new Animation |
||||
|
{ |
||||
|
FillMode = FillMode.Forward, |
||||
|
Children = |
||||
|
{ |
||||
|
new KeyFrame |
||||
|
{ |
||||
|
Setters = { new Setter { Property = scaleProperty, Value = 1d } }, |
||||
|
Cue = new Cue(0d) |
||||
|
}, |
||||
|
new KeyFrame |
||||
|
{ |
||||
|
Setters = |
||||
|
{ |
||||
|
new Setter |
||||
|
{ |
||||
|
Property = scaleProperty, |
||||
|
Value = 0d |
||||
|
} |
||||
|
}, |
||||
|
Cue = new Cue(1d) |
||||
|
} |
||||
|
}, |
||||
|
Duration = Duration |
||||
|
}; |
||||
|
tasks.Add(animation.RunAsync(from, null, cancellationToken)); |
||||
|
} |
||||
|
|
||||
|
if (to != null) |
||||
|
{ |
||||
|
to.IsVisible = true; |
||||
|
var animation = new Animation |
||||
|
{ |
||||
|
FillMode = FillMode.Forward, |
||||
|
Children = |
||||
|
{ |
||||
|
new KeyFrame |
||||
|
{ |
||||
|
Setters = |
||||
|
{ |
||||
|
new Setter |
||||
|
{ |
||||
|
Property = scaleProperty, |
||||
|
Value = 0d |
||||
|
} |
||||
|
}, |
||||
|
Cue = new Cue(0d) |
||||
|
}, |
||||
|
new KeyFrame |
||||
|
{ |
||||
|
Setters = { new Setter { Property = scaleProperty, Value = 1d } }, |
||||
|
Cue = new Cue(1d) |
||||
|
} |
||||
|
}, |
||||
|
Duration = Duration |
||||
|
}; |
||||
|
tasks.Add(animation.RunAsync(to, null, cancellationToken)); |
||||
|
} |
||||
|
|
||||
|
await Task.WhenAll(tasks); |
||||
|
|
||||
|
if (from != null && !cancellationToken.IsCancellationRequested) |
||||
|
{ |
||||
|
from.IsVisible = false; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Gets the common visual parent of the two control.
|
||||
|
/// </summary>
|
||||
|
/// <param name="from">The from control.</param>
|
||||
|
/// <param name="to">The to control.</param>
|
||||
|
/// <returns>The common parent.</returns>
|
||||
|
/// <exception cref="ArgumentException">
|
||||
|
/// The two controls do not share a common parent.
|
||||
|
/// </exception>
|
||||
|
/// <remarks>
|
||||
|
/// Any one of the parameters may be null, but not both.
|
||||
|
/// </remarks>
|
||||
|
private static IVisual GetVisualParent(IVisual? from, IVisual? to) |
||||
|
{ |
||||
|
var p1 = (from ?? to)!.VisualParent; |
||||
|
var p2 = (to ?? from)!.VisualParent; |
||||
|
|
||||
|
if (p1 != null && p2 != null && p1 != p2) |
||||
|
{ |
||||
|
throw new ArgumentException("Controls for PageSlide must have same parent."); |
||||
|
} |
||||
|
|
||||
|
return p1 ?? throw new InvalidOperationException("Cannot determine visual parent."); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,7 @@ |
|||||
|
<Application xmlns="https://github.com/avaloniaui" |
||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
|
x:Class="IntegrationTestApp.App"> |
||||
|
<Application.Styles> |
||||
|
<FluentTheme Mode="Light"/> |
||||
|
</Application.Styles> |
||||
|
</Application> |
||||
@ -0,0 +1,24 @@ |
|||||
|
using Avalonia; |
||||
|
using Avalonia.Controls.ApplicationLifetimes; |
||||
|
using Avalonia.Markup.Xaml; |
||||
|
|
||||
|
namespace IntegrationTestApp |
||||
|
{ |
||||
|
public class App : Application |
||||
|
{ |
||||
|
public override void Initialize() |
||||
|
{ |
||||
|
AvaloniaXamlLoader.Load(this); |
||||
|
} |
||||
|
|
||||
|
public override void OnFrameworkInitializationCompleted() |
||||
|
{ |
||||
|
if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop) |
||||
|
{ |
||||
|
desktop.MainWindow = new MainWindow(); |
||||
|
} |
||||
|
|
||||
|
base.OnFrameworkInitializationCompleted(); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,27 @@ |
|||||
|
<Project Sdk="Microsoft.NET.Sdk"> |
||||
|
<PropertyGroup> |
||||
|
<OutputType>WinExe</OutputType> |
||||
|
<TargetFramework>net6.0</TargetFramework> |
||||
|
<Nullable>enable</Nullable> |
||||
|
</PropertyGroup> |
||||
|
|
||||
|
<PropertyGroup> |
||||
|
<CFBundleName>IntegrationTestApp</CFBundleName> |
||||
|
<CFBundleIdentifier>net.avaloniaui.avalonia.integrationtestapp</CFBundleIdentifier> |
||||
|
<NSHighResolutionCapable>true</NSHighResolutionCapable> |
||||
|
<CFBundleShortVersionString>1.0.0</CFBundleShortVersionString> |
||||
|
</PropertyGroup> |
||||
|
|
||||
|
<ItemGroup> |
||||
|
<PackageReference Include="Dotnet.Bundle" Version="0.9.13" /> |
||||
|
</ItemGroup> |
||||
|
|
||||
|
<ItemGroup> |
||||
|
<ProjectReference Include="..\..\src\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj" /> |
||||
|
</ItemGroup> |
||||
|
|
||||
|
<Import Project="..\..\build\BuildTargets.targets" /> |
||||
|
<Import Project="..\..\build\SampleApp.props" /> |
||||
|
<Import Project="..\..\build\ReferenceCoreLibraries.props" /> |
||||
|
|
||||
|
</Project> |
||||
@ -0,0 +1,95 @@ |
|||||
|
<Window xmlns="https://github.com/avaloniaui" |
||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
||||
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450" |
||||
|
x:Class="IntegrationTestApp.MainWindow" |
||||
|
Title="IntegrationTestApp"> |
||||
|
<NativeMenu.Menu> |
||||
|
<NativeMenu> |
||||
|
<NativeMenuItem Header="File"> |
||||
|
<NativeMenu> |
||||
|
<NativeMenuItem Header="Open..."/> |
||||
|
</NativeMenu> |
||||
|
</NativeMenuItem> |
||||
|
<NativeMenuItem Header="View"> |
||||
|
<NativeMenu/> |
||||
|
</NativeMenuItem> |
||||
|
</NativeMenu> |
||||
|
</NativeMenu.Menu> |
||||
|
<DockPanel> |
||||
|
<NativeMenuBar DockPanel.Dock="Top"/> |
||||
|
|
||||
|
<TabControl TabStripPlacement="Left" Name="MainTabs"> |
||||
|
<TabItem Header="Automation"> |
||||
|
<StackPanel> |
||||
|
<TextBlock Name="TextBlockWithName">TextBlockWithName</TextBlock> |
||||
|
<TextBlock Name="NotTheAutomationId" AutomationProperties.AutomationId="TextBlockWithNameAndAutomationId"> |
||||
|
TextBlockWithNameAndAutomationId |
||||
|
</TextBlock> |
||||
|
<TextBlock Name="TextBlockAsLabel">Label for TextBox</TextBlock> |
||||
|
<TextBox Name="LabeledByTextBox" AutomationProperties.LabeledBy="{Binding #TextBlockAsLabel}"> |
||||
|
Foo |
||||
|
</TextBox> |
||||
|
</StackPanel> |
||||
|
</TabItem> |
||||
|
|
||||
|
<TabItem Header="Button"> |
||||
|
<StackPanel> |
||||
|
<Button Name="DisabledButton" IsEnabled="False"> |
||||
|
Disabled Button |
||||
|
</Button> |
||||
|
<Button Name="BasicButton"> |
||||
|
Basic Button |
||||
|
</Button> |
||||
|
<Button Name="ButtonWithTextBlock"> |
||||
|
<TextBlock>Button with TextBlock</TextBlock> |
||||
|
</Button> |
||||
|
<Button Name="ButtonWithAcceleratorKey" HotKey="Ctrl+B">Button with Accelerator Key</Button> |
||||
|
</StackPanel> |
||||
|
</TabItem> |
||||
|
|
||||
|
<TabItem Header="CheckBox"> |
||||
|
<StackPanel> |
||||
|
<CheckBox Name="UncheckedCheckBox">Unchecked</CheckBox> |
||||
|
<CheckBox Name="CheckedCheckBox" IsChecked="True">Checked</CheckBox> |
||||
|
<CheckBox Name="ThreeStateCheckBox" IsThreeState="True" IsChecked="{x:Null}">ThreeState</CheckBox> |
||||
|
</StackPanel> |
||||
|
</TabItem> |
||||
|
|
||||
|
<TabItem Header="ComboBox"> |
||||
|
<StackPanel> |
||||
|
<ComboBox Name="BasicComboBox"> |
||||
|
<ComboBoxItem>Item 0</ComboBoxItem> |
||||
|
<ComboBoxItem>Item 1</ComboBoxItem> |
||||
|
</ComboBox> |
||||
|
<Button Name="ComboBoxSelectionClear">Clear Selection</Button> |
||||
|
<Button Name="ComboBoxSelectFirst">Select First</Button> |
||||
|
</StackPanel> |
||||
|
</TabItem> |
||||
|
|
||||
|
<TabItem Header="ListBox"> |
||||
|
<DockPanel> |
||||
|
<StackPanel DockPanel.Dock="Bottom"> |
||||
|
<Button Name="ListBoxSelectionClear">Clear Selection</Button> |
||||
|
</StackPanel> |
||||
|
<ListBox Name="BasicListBox" Items="{Binding ListBoxItems}" SelectionMode="Multiple"/> |
||||
|
</DockPanel> |
||||
|
</TabItem> |
||||
|
|
||||
|
<TabItem Header="Menu"> |
||||
|
<DockPanel> |
||||
|
<Menu DockPanel.Dock="Top"> |
||||
|
<MenuItem Name="RootMenuItem" Header="_Root"> |
||||
|
<MenuItem Name="Child1MenuItem" Header="_Child 1" InputGesture="Ctrl+O" Click="MenuClicked"/> |
||||
|
<MenuItem Name="Child2MenuItem" Header="_Child 1"> |
||||
|
<MenuItem Name="GrandchildMenuItem" Header="_Grandchild" Click="MenuClicked"/> |
||||
|
</MenuItem> |
||||
|
</MenuItem> |
||||
|
</Menu> |
||||
|
<TextBlock Name="ClickedMenuItem">None</TextBlock> |
||||
|
</DockPanel> |
||||
|
</TabItem> |
||||
|
</TabControl> |
||||
|
</DockPanel> |
||||
|
</Window> |
||||
@ -0,0 +1,67 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Linq; |
||||
|
using Avalonia; |
||||
|
using Avalonia.Controls; |
||||
|
using Avalonia.Interactivity; |
||||
|
using Avalonia.Markup.Xaml; |
||||
|
|
||||
|
namespace IntegrationTestApp |
||||
|
{ |
||||
|
public class MainWindow : Window |
||||
|
{ |
||||
|
public MainWindow() |
||||
|
{ |
||||
|
InitializeComponent(); |
||||
|
InitializeViewMenu(); |
||||
|
this.AttachDevTools(); |
||||
|
AddHandler(Button.ClickEvent, OnButtonClick); |
||||
|
ListBoxItems = Enumerable.Range(0, 100).Select(x => "Item " + x).ToList(); |
||||
|
DataContext = this; |
||||
|
} |
||||
|
|
||||
|
public List<string> ListBoxItems { get; } |
||||
|
|
||||
|
private void InitializeComponent() |
||||
|
{ |
||||
|
AvaloniaXamlLoader.Load(this); |
||||
|
} |
||||
|
|
||||
|
private void InitializeViewMenu() |
||||
|
{ |
||||
|
var mainTabs = this.FindControl<TabControl>("MainTabs"); |
||||
|
var viewMenu = (NativeMenuItem)NativeMenu.GetMenu(this).Items[1]; |
||||
|
|
||||
|
foreach (TabItem tabItem in mainTabs.Items) |
||||
|
{ |
||||
|
var menuItem = new NativeMenuItem |
||||
|
{ |
||||
|
Header = (string)tabItem.Header!, |
||||
|
IsChecked = tabItem.IsSelected, |
||||
|
ToggleType = NativeMenuItemToggleType.Radio, |
||||
|
}; |
||||
|
|
||||
|
menuItem.Click += (s, e) => tabItem.IsSelected = true; |
||||
|
viewMenu.Menu.Items.Add(menuItem); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
private void MenuClicked(object? sender, RoutedEventArgs e) |
||||
|
{ |
||||
|
var clickedMenuItemTextBlock = this.FindControl<TextBlock>("ClickedMenuItem"); |
||||
|
clickedMenuItemTextBlock.Text = ((MenuItem)sender!).Header.ToString(); |
||||
|
} |
||||
|
|
||||
|
private void OnButtonClick(object? sender, RoutedEventArgs e) |
||||
|
{ |
||||
|
var source = e.Source as Button; |
||||
|
|
||||
|
if (source?.Name == "ComboBoxSelectionClear") |
||||
|
this.FindControl<ComboBox>("BasicComboBox").SelectedIndex = -1; |
||||
|
if (source?.Name == "ComboBoxSelectFirst") |
||||
|
this.FindControl<ComboBox>("BasicComboBox").SelectedIndex = 0; |
||||
|
if (source?.Name == "ListBoxSelectionClear") |
||||
|
this.FindControl<ListBox>("BasicListBox").SelectedIndex = -1; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,22 @@ |
|||||
|
using System; |
||||
|
using Avalonia; |
||||
|
using Avalonia.Controls; |
||||
|
using Avalonia.Controls.ApplicationLifetimes; |
||||
|
|
||||
|
namespace IntegrationTestApp |
||||
|
{ |
||||
|
class Program |
||||
|
{ |
||||
|
// Initialization code. Don't use any Avalonia, third-party APIs or any
|
||||
|
// SynchronizationContext-reliant code before AppMain is called: things aren't initialized
|
||||
|
// yet and stuff might break.
|
||||
|
public static void Main(string[] args) => BuildAvaloniaApp() |
||||
|
.StartWithClassicDesktopLifetime(args); |
||||
|
|
||||
|
// Avalonia configuration, don't remove; also used by visual designer.
|
||||
|
public static AppBuilder BuildAvaloniaApp() |
||||
|
=> AppBuilder.Configure<App>() |
||||
|
.UsePlatformDetect() |
||||
|
.LogToTrace(); |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,5 @@ |
|||||
|
#!/usr/bin/env bash |
||||
|
|
||||
|
cd $(cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd) |
||||
|
dotnet restore -r osx-arm64 |
||||
|
dotnet msbuild -t:BundleApp -p:RuntimeIdentifier=osx-arm64 -p:_AvaloniaUseExternalMSBuild=false |
||||
@ -0,0 +1,11 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
|
||||
|
<!-- |
||||
|
To use the Avalonia CI feed to get unstable packages, move this file to the root of your solution. |
||||
|
--> |
||||
|
|
||||
|
<configuration> |
||||
|
<packageSources> |
||||
|
<add key="AvaloniaCI" value="https://www.myget.org/F/avalonia-ci/api/v2" /> |
||||
|
</packageSources> |
||||
|
</configuration> |
||||
@ -0,0 +1,71 @@ |
|||||
|
<UserControl xmlns="https://github.com/avaloniaui" |
||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
||||
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450" |
||||
|
x:Class="RenderDemo.Pages.BrushesPage"> |
||||
|
<Canvas Background="White" Width="480" Height="360"> |
||||
|
<Rectangle Canvas.Left="20" Canvas.Top="20" Width="440" Height="50"> |
||||
|
<Rectangle.Fill> |
||||
|
<LinearGradientBrush StartPoint="0,0" EndPoint="410,0"> |
||||
|
<LinearGradientBrush.Transform> |
||||
|
<TransformGroup> |
||||
|
<ScaleTransform ScaleX="0.5" /> |
||||
|
<SkewTransform /> |
||||
|
<RotateTransform /> |
||||
|
<TranslateTransform X="5" Y="15" /> |
||||
|
</TransformGroup> |
||||
|
</LinearGradientBrush.Transform> |
||||
|
<LinearGradientBrush.GradientStops> |
||||
|
<GradientStop Color="Blue" Offset="0" /> |
||||
|
<GradientStop Color="Green" Offset="0.5" /> |
||||
|
<GradientStop Color="Lime" Offset="1" /> |
||||
|
</LinearGradientBrush.GradientStops> |
||||
|
</LinearGradientBrush> |
||||
|
</Rectangle.Fill> |
||||
|
</Rectangle> |
||||
|
<TextBlock Canvas.Left="20" Canvas.Top="70" FontSize="30" Text="scale(0.5) on gradient" /> |
||||
|
<Rectangle Canvas.Left="20" Canvas.Top="110" Width="440" Height="50"> |
||||
|
<Rectangle.Fill> |
||||
|
<RadialGradientBrush Center="0.0,0.0" GradientOrigin="0.0,0.0" Radius="0.13636364"> |
||||
|
<RadialGradientBrush.Transform> |
||||
|
<TransformGroup> |
||||
|
<ScaleTransform /> |
||||
|
<SkewTransform AngleX="45" /> |
||||
|
<RotateTransform /> |
||||
|
<TranslateTransform X="240" Y="45" /> |
||||
|
</TransformGroup> |
||||
|
</RadialGradientBrush.Transform> |
||||
|
<RadialGradientBrush.GradientStops> |
||||
|
<GradientStop Color="Black" Offset="0" /> |
||||
|
<GradientStop Color="#FFFFA500" Offset="1" /> |
||||
|
</RadialGradientBrush.GradientStops> |
||||
|
</RadialGradientBrush> |
||||
|
</Rectangle.Fill> |
||||
|
</Rectangle> |
||||
|
<TextBlock Canvas.Left="20" Canvas.Top="160" FontSize="30" Text="skewX(45) on gradient" /> |
||||
|
<Rectangle Canvas.Left="20" Canvas.Top="210" Width="440" Height="50"> |
||||
|
<Rectangle.Fill> |
||||
|
<VisualBrush TileMode="Tile" SourceRect="0,0,20,20" DestinationRect="0,0,20,20" Stretch="None"> |
||||
|
<VisualBrush.Transform> |
||||
|
<TransformGroup> |
||||
|
<ScaleTransform ScaleX="2" ScaleY="2" /> |
||||
|
<SkewTransform AngleX="45" /> |
||||
|
<RotateTransform /> |
||||
|
<TranslateTransform X="5" Y="5" /> |
||||
|
</TransformGroup> |
||||
|
</VisualBrush.Transform> |
||||
|
<VisualBrush.Visual> |
||||
|
<Canvas Width="20" Height="20"> |
||||
|
<Rectangle Canvas.Left="0" Canvas.Top="0" Width="10" Height="10" Fill="Maroon" /> |
||||
|
<Rectangle Canvas.Left="10" Canvas.Top="0" Width="10" Height="10" Fill="Green" /> |
||||
|
<Rectangle Canvas.Left="0" Canvas.Top="10" Width="10" Height="10" Fill="Blue" /> |
||||
|
<Rectangle Canvas.Left="10" Canvas.Top="10" Width="10" Height="10" Fill="Yellow" /> |
||||
|
</Canvas> |
||||
|
</VisualBrush.Visual> |
||||
|
</VisualBrush> |
||||
|
</Rectangle.Fill> |
||||
|
</Rectangle> |
||||
|
<TextBlock Canvas.Left="20" Canvas.Top="260" FontSize="30" Text="scale(2), skewX(45) on pattern" /> |
||||
|
</Canvas> |
||||
|
</UserControl> |
||||
@ -0,0 +1,18 @@ |
|||||
|
using Avalonia.Controls; |
||||
|
using Avalonia.Markup.Xaml; |
||||
|
|
||||
|
namespace RenderDemo.Pages; |
||||
|
|
||||
|
public class BrushesPage : UserControl |
||||
|
{ |
||||
|
public BrushesPage() |
||||
|
{ |
||||
|
InitializeComponent(); |
||||
|
} |
||||
|
|
||||
|
private void InitializeComponent() |
||||
|
{ |
||||
|
AvaloniaXamlLoader.Load(this); |
||||
|
} |
||||
|
} |
||||
|
|
||||
@ -1,14 +0,0 @@ |
|||||
using Avalonia.Controls; |
|
||||
using Avalonia.PlatformSupport; |
|
||||
|
|
||||
namespace Avalonia |
|
||||
{ |
|
||||
public sealed class AppBuilder : AppBuilderBase<AppBuilder> |
|
||||
{ |
|
||||
public AppBuilder() : base(new StandardRuntimePlatform(), |
|
||||
builder => StandardRuntimePlatformServices.Register(builder.Instance?.GetType()?.Assembly)) |
|
||||
{ |
|
||||
|
|
||||
} |
|
||||
} |
|
||||
} |
|
||||
@ -1,15 +1,19 @@ |
|||||
<Project Sdk="MSBuild.Sdk.Extras"> |
<Project Sdk="Xamarin.Legacy.Sdk"> |
||||
<PropertyGroup> |
<PropertyGroup> |
||||
<TargetFramework>monoandroid11.0</TargetFramework> |
<TargetFrameworks>net6.0-android</TargetFrameworks> |
||||
|
<TargetFrameworks Condition="'$(MSBuildRuntimeType)' != 'Core'">$(TargetFrameworks);monoandroid11.0</TargetFrameworks> |
||||
|
<SupportedOSPlatformVersion>21</SupportedOSPlatformVersion> |
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
||||
|
<MSBuildEnableWorkloadResolver>true</MSBuildEnableWorkloadResolver> |
||||
|
<DebugType>portable</DebugType> |
||||
</PropertyGroup> |
</PropertyGroup> |
||||
<ItemGroup> |
<ItemGroup> |
||||
<ProjectReference Include="..\..\..\packages\Avalonia\Avalonia.csproj" /> |
<ProjectReference Include="..\..\..\packages\Avalonia\Avalonia.csproj" /> |
||||
<ProjectReference Include="..\..\Avalonia.PlatformSupport\Avalonia.PlatformSupport.csproj"> |
<PackageReference Include="Xamarin.AndroidX.AppCompat" Version="1.3.1.3" /> |
||||
<SetTargetFramework>TargetFramework=netstandard2.0</SetTargetFramework> |
<PackageReference Include="Xamarin.AndroidX.Lifecycle.ViewModel" Version="2.3.1.3" /> |
||||
</ProjectReference> |
</ItemGroup> |
||||
|
<ItemGroup> |
||||
|
<ProjectReference Include="..\..\Avalonia.Base\Avalonia.Base.csproj" /> |
||||
<ProjectReference Include="..\..\Skia\Avalonia.Skia\Avalonia.Skia.csproj" /> |
<ProjectReference Include="..\..\Skia\Avalonia.Skia\Avalonia.Skia.csproj" /> |
||||
</ItemGroup> |
</ItemGroup> |
||||
<Import Project="..\..\..\build\Rx.props" /> |
|
||||
<Import Project="..\..\..\build\AndroidWorkarounds.props" /> |
|
||||
</Project> |
</Project> |
||||
|
|||||
@ -1,35 +1,82 @@ |
|||||
using Android.App; |
|
||||
using Android.OS; |
using Android.OS; |
||||
using Android.Views; |
using AndroidX.AppCompat.App; |
||||
|
using Android.Content.Res; |
||||
|
using AndroidX.Lifecycle; |
||||
|
using Avalonia.Controls.ApplicationLifetimes; |
||||
|
using Avalonia.Controls; |
||||
|
|
||||
namespace Avalonia.Android |
namespace Avalonia.Android |
||||
{ |
{ |
||||
public abstract class AvaloniaActivity : Activity |
public abstract class AvaloniaActivity<TApp> : AppCompatActivity where TApp : Application, new() |
||||
{ |
{ |
||||
|
internal class SingleViewLifetime : ISingleViewApplicationLifetime |
||||
|
{ |
||||
|
public AvaloniaView View { get; internal set; } |
||||
|
|
||||
|
public Control MainView |
||||
|
{ |
||||
|
get => (Control)View.Content; |
||||
|
set => View.Content = value; |
||||
|
} |
||||
|
} |
||||
|
|
||||
internal AvaloniaView View; |
internal AvaloniaView View; |
||||
object _content; |
internal AvaloniaViewModel _viewModel; |
||||
|
|
||||
|
protected virtual AppBuilder CustomizeAppBuilder(AppBuilder builder) => builder.UseAndroid(); |
||||
|
|
||||
protected override void OnCreate(Bundle savedInstanceState) |
protected override void OnCreate(Bundle savedInstanceState) |
||||
{ |
{ |
||||
|
var builder = AppBuilder.Configure<TApp>(); |
||||
|
|
||||
|
CustomizeAppBuilder(builder); |
||||
|
|
||||
View = new AvaloniaView(this); |
View = new AvaloniaView(this); |
||||
if (_content != null) |
|
||||
View.Content = _content; |
|
||||
SetContentView(View); |
SetContentView(View); |
||||
|
|
||||
|
var lifetime = new SingleViewLifetime(); |
||||
|
lifetime.View = View; |
||||
|
|
||||
|
builder.AfterSetup(x => |
||||
|
{ |
||||
|
_viewModel = new ViewModelProvider(this).Get(Java.Lang.Class.FromType(typeof(AvaloniaViewModel))) as AvaloniaViewModel; |
||||
|
|
||||
|
if (_viewModel.Content != null) |
||||
|
{ |
||||
|
View.Content = _viewModel.Content; |
||||
|
} |
||||
|
|
||||
|
View.Prepare(); |
||||
|
}); |
||||
|
|
||||
|
builder.SetupWithLifetime(lifetime); |
||||
|
|
||||
base.OnCreate(savedInstanceState); |
base.OnCreate(savedInstanceState); |
||||
} |
} |
||||
|
|
||||
public object Content |
public object Content |
||||
{ |
{ |
||||
get |
get |
||||
{ |
{ |
||||
return _content; |
return _viewModel.Content; |
||||
} |
} |
||||
set |
set |
||||
{ |
{ |
||||
_content = value; |
_viewModel.Content = value; |
||||
if (View != null) |
if (View != null) |
||||
View.Content = value; |
View.Content = value; |
||||
} |
} |
||||
} |
} |
||||
|
|
||||
|
public override void OnConfigurationChanged(Configuration newConfig) |
||||
|
{ |
||||
|
base.OnConfigurationChanged(newConfig); |
||||
|
} |
||||
|
|
||||
|
protected override void OnDestroy() |
||||
|
{ |
||||
|
View.Content = null; |
||||
|
|
||||
|
base.OnDestroy(); |
||||
|
} |
||||
} |
} |
||||
} |
} |
||||
|
|||||
@ -0,0 +1,11 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace Avalonia.Android |
||||
|
{ |
||||
|
internal class AvaloniaViewModel : AndroidX.Lifecycle.ViewModel |
||||
|
{ |
||||
|
public object Content { get; set; } |
||||
|
} |
||||
|
} |
||||
@ -1,50 +0,0 @@ |
|||||
Images, layout descriptions, binary blobs and string dictionaries can be included |
|
||||
in your application as resource files. Various Android APIs are designed to |
|
||||
operate on the resource IDs instead of dealing with images, strings or binary blobs |
|
||||
directly. |
|
||||
|
|
||||
For example, a sample Android app that contains a user interface layout (main.xml), |
|
||||
an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png) |
|
||||
would keep its resources in the "Resources" directory of the application: |
|
||||
|
|
||||
Resources/ |
|
||||
drawable-hdpi/ |
|
||||
icon.png |
|
||||
|
|
||||
drawable-ldpi/ |
|
||||
icon.png |
|
||||
|
|
||||
drawable-mdpi/ |
|
||||
icon.png |
|
||||
|
|
||||
layout/ |
|
||||
main.xml |
|
||||
|
|
||||
values/ |
|
||||
strings.xml |
|
||||
|
|
||||
In order to get the build system to recognize Android resources, set the build action to |
|
||||
"AndroidResource". The native Android APIs do not operate directly with filenames, but |
|
||||
instead operate on resource IDs. When you compile an Android application that uses resources, |
|
||||
the build system will package the resources for distribution and generate a class called |
|
||||
"Resource" that contains the tokens for each one of the resources included. For example, |
|
||||
for the above Resources layout, this is what the Resource class would expose: |
|
||||
|
|
||||
public class Resource { |
|
||||
public class drawable { |
|
||||
public const int icon = 0x123; |
|
||||
} |
|
||||
|
|
||||
public class layout { |
|
||||
public const int main = 0x456; |
|
||||
} |
|
||||
|
|
||||
public class strings { |
|
||||
public const int first_string = 0xabc; |
|
||||
public const int second_string = 0xbcd; |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
You would then use R.drawable.icon to reference the drawable/icon.png file, or Resource.layout.main |
|
||||
to reference the layout/main.xml file, or Resource.strings.first_string to reference the first |
|
||||
string in the dictionary file values/strings.xml. |
|
||||
@ -1,6 +0,0 @@ |
|||||
<?xml version="1.0" encoding="utf-8"?> |
|
||||
|
|
||||
<resources> |
|
||||
<string name="Hello">Hello World, Click Me!</string> |
|
||||
<string name="ApplicationName">$projectname$</string> |
|
||||
</resources> |
|
||||
@ -1,19 +0,0 @@ |
|||||
Any raw assets you want to be deployed with your application can be placed in |
|
||||
this directory (and child directories) and given a Build Action of "AndroidAsset". |
|
||||
|
|
||||
These files will be deployed with you package and will be accessible using Android's |
|
||||
AssetManager, like this: |
|
||||
|
|
||||
public class ReadAsset : Activity |
|
||||
{ |
|
||||
protected override void OnCreate (Bundle bundle) |
|
||||
{ |
|
||||
base.OnCreate (bundle); |
|
||||
|
|
||||
InputStream input = Assets.Open ("my_asset.txt"); |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
Additionally, some Android functions will automatically load asset files: |
|
||||
|
|
||||
Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); |
|
||||
@ -1,153 +1,43 @@ |
|||||
<?xml version="1.0" encoding="utf-8"?> |
<Project Sdk="Microsoft.NET.Sdk"> |
||||
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|
||||
<PropertyGroup> |
<PropertyGroup> |
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
<TargetFramework>net6.0-android</TargetFramework> |
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
<SupportedOSPlatformVersion>21</SupportedOSPlatformVersion> |
||||
<ProductVersion>8.0.30703</ProductVersion> |
<OutputType>Exe</OutputType> |
||||
<SchemaVersion>2.0</SchemaVersion> |
<Nullable>enable</Nullable> |
||||
<ProjectGuid>{FF69B927-C545-49AE-8E16-3D14D621AA12}</ProjectGuid> |
<ApplicationId>com.Avalonia.AndroidTestApplication</ApplicationId> |
||||
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> |
<ApplicationVersion>1</ApplicationVersion> |
||||
<OutputType>Library</OutputType> |
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion> |
||||
<AppDesignerFolder>Properties</AppDesignerFolder> |
<AndroidPackageFormat>apk</AndroidPackageFormat> |
||||
<RootNamespace>Avalonia.AndroidTestApplication</RootNamespace> |
<MSBuildEnableWorkloadResolver>true</MSBuildEnableWorkloadResolver> |
||||
<AssemblyName>Avalonia.AndroidTestApplication</AssemblyName> |
<DebugType>portable</DebugType> |
||||
<FileAlignment>512</FileAlignment> |
|
||||
<AndroidApplication>true</AndroidApplication> |
|
||||
<AndroidResgenFile>Resources\Resource.Designer.cs</AndroidResgenFile> |
|
||||
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies> |
|
||||
<AndroidUseLatestPlatformSdk>False</AndroidUseLatestPlatformSdk> |
|
||||
<TargetFrameworkVersion>v11.0</TargetFrameworkVersion> |
|
||||
<AndroidManifest>Properties\AndroidManifest.xml</AndroidManifest> |
|
||||
</PropertyGroup> |
</PropertyGroup> |
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
|
||||
<DebugSymbols>True</DebugSymbols> |
|
||||
<DebugType>full</DebugType> |
|
||||
<Optimize>false</Optimize> |
|
||||
<OutputPath>bin\Debug\</OutputPath> |
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants> |
|
||||
<ErrorReport>prompt</ErrorReport> |
|
||||
<WarningLevel>4</WarningLevel> |
|
||||
<AndroidUseSharedRuntime>True</AndroidUseSharedRuntime> |
|
||||
<AndroidLinkMode>None</AndroidLinkMode> |
|
||||
<EmbedAssembliesIntoApk>True</EmbedAssembliesIntoApk> |
|
||||
<BundleAssemblies>False</BundleAssemblies> |
|
||||
<AndroidCreatePackagePerAbi>False</AndroidCreatePackagePerAbi> |
|
||||
<AndroidSupportedAbis>armeabi-v7a;x86</AndroidSupportedAbis> |
|
||||
<Debugger>Xamarin</Debugger> |
|
||||
<AndroidEnableMultiDex>False</AndroidEnableMultiDex> |
|
||||
<DevInstrumentationEnabled>True</DevInstrumentationEnabled> |
|
||||
<AotAssemblies>False</AotAssemblies> |
|
||||
<EnableLLVM>False</EnableLLVM> |
|
||||
<EnableProguard>False</EnableProguard> |
|
||||
</PropertyGroup> |
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
|
||||
<DebugType>pdbonly</DebugType> |
|
||||
<Optimize>true</Optimize> |
|
||||
<OutputPath>bin\Release\</OutputPath> |
|
||||
<DefineConstants>TRACE</DefineConstants> |
|
||||
<ErrorReport>prompt</ErrorReport> |
|
||||
<WarningLevel>4</WarningLevel> |
|
||||
<AndroidUseSharedRuntime>False</AndroidUseSharedRuntime> |
|
||||
<AndroidLinkMode>Full</AndroidLinkMode> |
|
||||
<EmbedAssembliesIntoApk>True</EmbedAssembliesIntoApk> |
|
||||
<BundleAssemblies>False</BundleAssemblies> |
|
||||
<AndroidCreatePackagePerAbi>False</AndroidCreatePackagePerAbi> |
|
||||
<AndroidSupportedAbis>armeabi-v7a,x86</AndroidSupportedAbis> |
|
||||
<Debugger>Xamarin</Debugger> |
|
||||
<AotAssemblies>False</AotAssemblies> |
|
||||
<EnableLLVM>False</EnableLLVM> |
|
||||
<AndroidEnableMultiDex>False</AndroidEnableMultiDex> |
|
||||
<EnableProguard>False</EnableProguard> |
|
||||
<DevInstrumentationEnabled>False</DevInstrumentationEnabled> |
|
||||
<DebugSymbols>False</DebugSymbols> |
|
||||
</PropertyGroup> |
|
||||
<ItemGroup> |
|
||||
<Reference Include="Mono.Android" /> |
|
||||
<Reference Include="mscorlib" /> |
|
||||
<Reference Include="System" /> |
|
||||
<Reference Include="System.Core" /> |
|
||||
<Reference Include="System.Xml.Linq" /> |
|
||||
<Reference Include="System.Xml" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup> |
|
||||
<Compile Include="MainActivity.cs" /> |
|
||||
<Compile Include="Resources\Resource.Designer.cs" /> |
|
||||
<Compile Include="Properties\AssemblyInfo.cs" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup> |
<ItemGroup> |
||||
<None Include="app.config" /> |
<AndroidResource Include="..\..\..\build\Assets\Icon.png"> |
||||
<None Include="Resources\AboutResources.txt" /> |
<Link>Resources\drawable\Icon.png</Link> |
||||
<None Include="Assets\AboutAssets.txt" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup> |
|
||||
<AndroidResource Include="Resources\values\Strings.xml"> |
|
||||
<SubType>Designer</SubType> |
|
||||
</AndroidResource> |
</AndroidResource> |
||||
</ItemGroup> |
</ItemGroup> |
||||
|
|
||||
|
<PropertyGroup Condition="'$(Configuration)'=='Release' and '$(TF_BUILD)' == ''"> |
||||
|
<DebugSymbols>True</DebugSymbols> |
||||
|
<RunAOTCompilation>True</RunAOTCompilation> |
||||
|
<EnableLLVM>True</EnableLLVM> |
||||
|
<AndroidEnableProfiledAot>True</AndroidEnableProfiledAot> |
||||
|
</PropertyGroup> |
||||
|
|
||||
<ItemGroup> |
<ItemGroup> |
||||
<AndroidResource Include="Resources\drawable\Icon.png" /> |
<None Remove="Assets\AboutAssets.txt" /> |
||||
</ItemGroup> |
|
||||
<ItemGroup> |
|
||||
<None Include="Properties\AndroidManifest.xml" /> |
|
||||
</ItemGroup> |
</ItemGroup> |
||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
||||
|
<BundleAssemblies>True</BundleAssemblies> |
||||
|
</PropertyGroup> |
||||
|
|
||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
||||
|
<BundleAssemblies>True</BundleAssemblies> |
||||
|
</PropertyGroup> |
||||
|
|
||||
<ItemGroup> |
<ItemGroup> |
||||
<ProjectReference Include="..\..\..\src\Android\Avalonia.Android\Avalonia.Android.csproj"> |
<ProjectReference Include="..\..\..\packages\Avalonia\Avalonia.csproj" /> |
||||
<Project>{7b92af71-6287-4693-9dcb-bd5b6e927e23}</Project> |
<ProjectReference Include="..\Avalonia.Android\Avalonia.Android.csproj" /> |
||||
<Name>Avalonia.Android</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\..\src\Markup\Avalonia.Markup.Xaml\Avalonia.Markup.Xaml.csproj"> |
|
||||
<Project>{3e53a01a-b331-47f3-b828-4a5717e77a24}</Project> |
|
||||
<Name>Avalonia.Markup.Xaml</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\..\src\Avalonia.Animation\Avalonia.Animation.csproj"> |
|
||||
<Project>{d211e587-d8bc-45b9-95a4-f297c8fa5200}</Project> |
|
||||
<Name>Avalonia.Animation</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\..\src\Avalonia.Base\Avalonia.Base.csproj"> |
|
||||
<Project>{b09b78d8-9b26-48b0-9149-d64a2f120f3f}</Project> |
|
||||
<Name>Avalonia.Base</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\..\src\Avalonia.Controls\Avalonia.Controls.csproj"> |
|
||||
<Project>{d2221c82-4a25-4583-9b43-d791e3f6820c}</Project> |
|
||||
<Name>Avalonia.Controls</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\..\src\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj"> |
|
||||
<Project>{7062ae20-5dcc-4442-9645-8195bdece63e}</Project> |
|
||||
<Name>Avalonia.Diagnostics</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\..\src\Avalonia.Input\Avalonia.Input.csproj"> |
|
||||
<Project>{62024b2d-53eb-4638-b26b-85eeaa54866e}</Project> |
|
||||
<Name>Avalonia.Input</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\..\src\Avalonia.Interactivity\Avalonia.Interactivity.csproj"> |
|
||||
<Project>{6b0ed19d-a08b-461c-a9d9-a9ee40b0c06b}</Project> |
|
||||
<Name>Avalonia.Interactivity</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\..\src\Avalonia.Layout\Avalonia.Layout.csproj"> |
|
||||
<Project>{42472427-4774-4c81-8aff-9f27b8e31721}</Project> |
|
||||
<Name>Avalonia.Layout</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\Avalonia.Visuals\Avalonia.Visuals.csproj"> |
|
||||
<Project>{eb582467-6abb-43a1-b052-e981ba910e3a}</Project> |
|
||||
<Name>Avalonia.Visuals</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\..\src\Avalonia.Styling\Avalonia.Styling.csproj"> |
|
||||
<Project>{f1baa01a-f176-4c6a-b39d-5b40bb1b148f}</Project> |
|
||||
<Name>Avalonia.Styling</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\..\src\Avalonia.Themes.Default\Avalonia.Themes.Default.csproj"> |
|
||||
<Project>{3e10a5fa-e8da-48b1-ad44-6a5b6cb7750f}</Project> |
|
||||
<Name>Avalonia.Themes.Default</Name> |
|
||||
</ProjectReference> |
|
||||
<ProjectReference Include="..\..\Skia\Avalonia.Skia\Avalonia.Skia.csproj"> |
|
||||
<Project>{7d2d3083-71dd-4cc9-8907-39a0d86fb322}</Project> |
|
||||
<Name>Avalonia.Skia</Name> |
|
||||
</ProjectReference> |
|
||||
</ItemGroup> |
</ItemGroup> |
||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" /> |
|
||||
<Import Project="..\..\..\build\Base.props" /> |
|
||||
<Import Project="..\..\..\build\Rx.props" /> |
|
||||
<Import Project="..\..\..\build\System.Memory.props" /> |
|
||||
<Import Project="..\..\..\build\AndroidWorkarounds.props" /> |
|
||||
<Import Project="..\..\..\build\LegacyProject.targets" /> |
|
||||
</Project> |
</Project> |
||||
|
|||||
@ -1,6 +1,4 @@ |
|||||
<?xml version="1.0" encoding="utf-8"?> |
<?xml version="1.0" encoding="utf-8"?> |
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="Avalonia.AndroidTestApplication" android:versionCode="1" android:versionName="1.0" android:installLocation="auto"> |
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> |
||||
<uses-sdk android:targetSdkVersion="30" /> |
|
||||
<application android:label="Avalonia.AndroidTestApplication" android:icon="@drawable/Icon" android:hardwareAccelerated="true"></application> |
<application android:label="Avalonia.AndroidTestApplication" android:icon="@drawable/Icon" android:hardwareAccelerated="true"></application> |
||||
<uses-permission android:name="android.permission.INTERNET" /> |
</manifest> |
||||
</manifest> |
|
||||
|
|||||
@ -1,30 +0,0 @@ |
|||||
using System.Reflection; |
|
||||
using System.Runtime.InteropServices; |
|
||||
|
|
||||
// General Information about an assembly is controlled through the following
|
|
||||
// set of attributes. Change these attribute values to modify the information
|
|
||||
// associated with an assembly.
|
|
||||
|
|
||||
[assembly: AssemblyTitle("Avalonia.AndroidTestApplication")] |
|
||||
[assembly: AssemblyDescription("")] |
|
||||
[assembly: AssemblyConfiguration("")] |
|
||||
[assembly: AssemblyCompany("")] |
|
||||
[assembly: AssemblyProduct("Avalonia.AndroidTestApplication")] |
|
||||
[assembly: AssemblyCopyright("Copyright © 2015")] |
|
||||
[assembly: AssemblyTrademark("")] |
|
||||
[assembly: AssemblyCulture("")] |
|
||||
[assembly: ComVisible(false)] |
|
||||
|
|
||||
// Version information for an assembly consists of the following four values:
|
|
||||
//
|
|
||||
// Major Version
|
|
||||
// Minor Version
|
|
||||
// Build Number
|
|
||||
// Revision
|
|
||||
//
|
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
|
||||
// by using the '*' as shown below:
|
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
|
||||
|
|
||||
[assembly: AssemblyVersion("1.0.0.0")] |
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")] |
|
||||
@ -1,79 +0,0 @@ |
|||||
#pragma warning disable 1591
|
|
||||
//------------------------------------------------------------------------------
|
|
||||
// <auto-generated>
|
|
||||
// This code was generated by a tool.
|
|
||||
//
|
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
|
||||
// the code is regenerated.
|
|
||||
// </auto-generated>
|
|
||||
//------------------------------------------------------------------------------
|
|
||||
|
|
||||
[assembly: global::Android.Runtime.ResourceDesignerAttribute("Avalonia.AndroidTestApplication.Resource", IsApplication=true)] |
|
||||
|
|
||||
namespace Avalonia.AndroidTestApplication |
|
||||
{ |
|
||||
|
|
||||
|
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Android.Build.Tasks", "12.1.99.62")] |
|
||||
public partial class Resource |
|
||||
{ |
|
||||
|
|
||||
static Resource() |
|
||||
{ |
|
||||
global::Android.Runtime.ResourceIdManager.UpdateIdValues(); |
|
||||
} |
|
||||
|
|
||||
public static void UpdateIdValues() |
|
||||
{ |
|
||||
} |
|
||||
|
|
||||
public partial class Attribute |
|
||||
{ |
|
||||
|
|
||||
static Attribute() |
|
||||
{ |
|
||||
global::Android.Runtime.ResourceIdManager.UpdateIdValues(); |
|
||||
} |
|
||||
|
|
||||
private Attribute() |
|
||||
{ |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
public partial class Drawable |
|
||||
{ |
|
||||
|
|
||||
// aapt resource value: 0x7F010000
|
|
||||
public const int Icon = 2130771968; |
|
||||
|
|
||||
static Drawable() |
|
||||
{ |
|
||||
global::Android.Runtime.ResourceIdManager.UpdateIdValues(); |
|
||||
} |
|
||||
|
|
||||
private Drawable() |
|
||||
{ |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
public partial class String |
|
||||
{ |
|
||||
|
|
||||
// aapt resource value: 0x7F020000
|
|
||||
public const int ApplicationName = 2130837504; |
|
||||
|
|
||||
// aapt resource value: 0x7F020001
|
|
||||
public const int Hello = 2130837505; |
|
||||
|
|
||||
static String() |
|
||||
{ |
|
||||
global::Android.Runtime.ResourceIdManager.UpdateIdValues(); |
|
||||
} |
|
||||
|
|
||||
private String() |
|
||||
{ |
|
||||
} |
|
||||
} |
|
||||
} |
|
||||
} |
|
||||
#pragma warning restore 1591
|
|
||||
@ -1,11 +0,0 @@ |
|||||
<?xml version="1.0" encoding="utf-8"?> |
|
||||
<configuration> |
|
||||
<runtime> |
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> |
|
||||
<dependentAssembly> |
|
||||
<assemblyIdentity name="System.Runtime.InteropServices.WindowsRuntime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> |
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" /> |
|
||||
</dependentAssembly> |
|
||||
</assemblyBinding> |
|
||||
</runtime> |
|
||||
</configuration> |
|
||||
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue