├── .gitattributes ├── .gitignore ├── AndroidTest ├── AndroidTest.csproj ├── Assets │ └── AboutAssets.txt ├── Class1.cs ├── MainActivity.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── Resources │ ├── AboutResources.txt │ ├── Resource.designer.cs │ ├── layout │ │ └── activity_main.xml │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ └── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml └── packages.config ├── CPF.Android ├── AndroidPlatform.cs ├── AndroidSynchronizationContext.cs ├── AndroidView.cs ├── CPF.Android.csproj ├── CPF.Android.nuspec ├── ClipboardImpl.cs ├── CpfActivity.cs ├── CpfAndroidApp.cs ├── CpfView.cs ├── EglContext.cs ├── FileSaveFragment.cs ├── GeneralView.cs ├── ISurfaceView.cs ├── InputConnection.cs ├── ListBoxTemplate.cs ├── NativeImpl.cs ├── OpenFileDialogView.cs ├── OpenGLView.cs ├── PopupImpl.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── Resource.designer.cs │ ├── drawable-xhdpi │ │ ├── filedialog_folder_l.png │ │ ├── filedialog_folder_m.png │ │ ├── filedialog_folder_s.png │ │ ├── filedialog_folder_up_l.png │ │ ├── filedialog_folder_up_m.png │ │ ├── filedialog_folder_up_s.png │ │ ├── filedialog_root_l.png │ │ ├── filedialog_root_m.png │ │ ├── filedialog_root_s.png │ │ ├── ic_about.png │ │ └── ic_launcher.png │ └── values │ │ └── strings.xml ├── SoftKeyboardListner.cs ├── WindowImpl.cs ├── license.txt └── nuget程序包打包说明.txt ├── CPF.Linux ├── CPF.Linux.csproj ├── DataObject.cs ├── Glib.cs ├── LinuxPlatform.cs ├── LinuxSynchronizationContext.cs ├── NativeHost.cs ├── NotifyIcon.cs ├── OpenGL │ ├── Glx.cs │ └── GlxContext.cs ├── ScreenImpl.cs ├── X11Atoms.cs ├── X11Clipboard.cs ├── X11Enums.cs ├── X11Info.cs ├── X11Key.cs ├── X11Structs.cs ├── X11Window.cs ├── XError.cs ├── XI2Manager.cs ├── XIStructs.cs └── XLib.cs ├── CPF.Mac ├── AppDelegate.cs ├── CPF.Mac.csproj ├── CPFNSApplication.cs ├── ClipboardImpl.cs ├── DataObject.cs ├── Key.cs ├── Mac │ ├── AppKit │ │ ├── ActionDispatcher.cs │ │ ├── AppKitFramework.cs │ │ ├── AppKitSynchronizationContext.cs │ │ ├── AppKitThreadAccessException.cs │ │ ├── DrawerShouldCloseDelegate.cs │ │ ├── DrawerShouldOpenDelegate.cs │ │ ├── DrawerWillResizeContentsDelegate.cs │ │ ├── GlobalEventHandler.cs │ │ ├── LocalEventHandler.cs │ │ ├── NSActionCell.cs │ │ ├── NSAnimation.cs │ │ ├── NSAnimationBlockingMode.cs │ │ ├── NSAnimationContext.cs │ │ ├── NSAnimationCurve.cs │ │ ├── NSAnimationDelegate.cs │ │ ├── NSAnimationEffect.cs │ │ ├── NSAnimationEventArgs.cs │ │ ├── NSAnimationPredicate.cs │ │ ├── NSAnimationProgress.cs │ │ ├── NSAnimationProgressMarkEventArgs.cs │ │ ├── NSAppearance.cs │ │ ├── NSApplication.cs │ │ ├── NSApplicationActivationOptions.cs │ │ ├── NSApplicationActivationPolicy.cs │ │ ├── NSApplicationDelegate.cs │ │ ├── NSApplicationDelegateReply.cs │ │ ├── NSApplicationDidFinishLaunchingEventArgs.cs │ │ ├── NSApplicationError.cs │ │ ├── NSApplicationFile.cs │ │ ├── NSApplicationFileCommand.cs │ │ ├── NSApplicationFilesEventArgs.cs │ │ ├── NSApplicationLayoutDirection.cs │ │ ├── NSApplicationMenu.cs │ │ ├── NSApplicationPredicate.cs │ │ ├── NSApplicationPresentationOptions.cs │ │ ├── NSApplicationPrint.cs │ │ ├── NSApplicationPrintReply.cs │ │ ├── NSApplicationRegisterEventArgs.cs │ │ ├── NSApplicationReopen.cs │ │ ├── NSApplicationSelection.cs │ │ ├── NSApplicationTerminateReply.cs │ │ ├── NSApplicationTermination.cs │ │ ├── NSArrayController.cs │ │ ├── NSBackgroundStyle.cs │ │ ├── NSBackingStore.cs │ │ ├── NSBezelStyle.cs │ │ ├── NSBezierPath.cs │ │ ├── NSBezierPathElement.cs │ │ ├── NSBitmapFormat.cs │ │ ├── NSBitmapImageFileType.cs │ │ ├── NSBitmapImageRep.cs │ │ ├── NSBorderType.cs │ │ ├── NSBox.cs │ │ ├── NSBoxType.cs │ │ ├── NSButton.cs │ │ ├── NSButtonCell.cs │ │ ├── NSButtonType.cs │ │ ├── NSCIImageRep.cs │ │ ├── NSCachedImageRep.cs │ │ ├── NSCell.cs │ │ ├── NSCellAttribute.cs │ │ ├── NSCellHit.cs │ │ ├── NSCellImagePosition.cs │ │ ├── NSCellMask.cs │ │ ├── NSCellStateValue.cs │ │ ├── NSCellType.cs │ │ ├── NSClipView.cs │ │ ├── NSCoderEventArgs.cs │ │ ├── NSCollectionView.cs │ │ ├── NSCollectionViewDelegate.cs │ │ ├── NSCollectionViewDropOperation.cs │ │ ├── NSCollectionViewItem.cs │ │ ├── NSColor.cs │ │ ├── NSColorList.cs │ │ ├── NSColorRenderingIntent.cs │ │ ├── NSColorSpace.cs │ │ ├── NSColorSpaceModel.cs │ │ ├── NSColorWell.cs │ │ ├── NSComposite.cs │ │ ├── NSCompositingOperation.cs │ │ ├── NSControl.cs │ │ ├── NSControlCommand.cs │ │ ├── NSControlSize.cs │ │ ├── NSControlText.cs │ │ ├── NSControlTextCompletion.cs │ │ ├── NSControlTextError.cs │ │ ├── NSControlTextErrorEventArgs.cs │ │ ├── NSControlTextFilter.cs │ │ ├── NSControlTextValidation.cs │ │ ├── NSControlTint.cs │ │ ├── NSController.cs │ │ ├── NSCursor.cs │ │ ├── NSCustomImageRep.cs │ │ ├── NSDataEventArgs.cs │ │ ├── NSDictionaryEventArgs.cs │ │ ├── NSDockTile.cs │ │ ├── NSDockTilePlugIn.cs │ │ ├── NSDragOperation.cs │ │ ├── NSDraggingContext.cs │ │ ├── NSDraggingDestination.cs │ │ ├── NSDraggingEnumerator.cs │ │ ├── NSDraggingFormation.cs │ │ ├── NSDraggingImageComponent.cs │ │ ├── NSDraggingInfo.cs │ │ ├── NSDraggingItem.cs │ │ ├── NSDraggingItemEnumerationOptions.cs │ │ ├── NSDraggingItemImagesContentProvider.cs │ │ ├── NSDraggingSession.cs │ │ ├── NSDraggingSource.cs │ │ ├── NSDrawer.cs │ │ ├── NSDrawerDelegate.cs │ │ ├── NSDrawerState.cs │ │ ├── NSEPSImageRep.cs │ │ ├── NSEdgeInsets.cs │ │ ├── NSErrorEventArgs.cs │ │ ├── NSEvent.cs │ │ ├── NSEventGestureAxis.cs │ │ ├── NSEventMask.cs │ │ ├── NSEventModifierMask.cs │ │ ├── NSEventMouseSubtype.cs │ │ ├── NSEventPhase.cs │ │ ├── NSEventSubtype.cs │ │ ├── NSEventSwipeTrackingOptions.cs │ │ ├── NSEventTrackHandler.cs │ │ ├── NSEventType.cs │ │ ├── NSFileTypeForHFSTypeCode.cs │ │ ├── NSFileWrapperReadingOptions.cs │ │ ├── NSFocusRingPlacement.cs │ │ ├── NSFocusRingType.cs │ │ ├── NSFont.cs │ │ ├── NSFontCollection.cs │ │ ├── NSFontCollectionAction.cs │ │ ├── NSFontCollectionChangedEventArgs.cs │ │ ├── NSFontCollectionOptions.cs │ │ ├── NSFontCollectionVisibility.cs │ │ ├── NSFontDescriptor.cs │ │ ├── NSFontManager.cs │ │ ├── NSFontPanel.cs │ │ ├── NSFontPanelMode.cs │ │ ├── NSFontRenderingMode.cs │ │ ├── NSFontSymbolicTraits.cs │ │ ├── NSFontTraitMask.cs │ │ ├── NSForm.cs │ │ ├── NSFormCell.cs │ │ ├── NSGLColorBuffer.cs │ │ ├── NSGLFormat.cs │ │ ├── NSGLTextureCubeMap.cs │ │ ├── NSGLTextureTarget.cs │ │ ├── NSGlyphGenerator.cs │ │ ├── NSGlyphInscription.cs │ │ ├── NSGlyphStorageOptions.cs │ │ ├── NSGradient.cs │ │ ├── NSGradientDrawingOptions.cs │ │ ├── NSGradientType.cs │ │ ├── NSGraphics.cs │ │ ├── NSGraphicsContext.cs │ │ ├── NSHelpManager.cs │ │ ├── NSImage.cs │ │ ├── NSImageAlignment.cs │ │ ├── NSImageCacheMode.cs │ │ ├── NSImageCell.cs │ │ ├── NSImageDelegate.cs │ │ ├── NSImageFrameStyle.cs │ │ ├── NSImageInterpolation.cs │ │ ├── NSImageLoadEventArgs.cs │ │ ├── NSImageLoadRepresentationEventArgs.cs │ │ ├── NSImageLoadStatus.cs │ │ ├── NSImageName.cs │ │ ├── NSImagePartialEventArgs.cs │ │ ├── NSImageRect.cs │ │ ├── NSImageRep.cs │ │ ├── NSImageRepLoadStatus.cs │ │ ├── NSImageScale.cs │ │ ├── NSImageScaling.cs │ │ ├── NSImageView.cs │ │ ├── NSKey.cs │ │ ├── NSLayoutAttribute.cs │ │ ├── NSLayoutConstraint.cs │ │ ├── NSLayoutConstraintOrientation.cs │ │ ├── NSLayoutFormatOptions.cs │ │ ├── NSLayoutManager.cs │ │ ├── NSLayoutManagerDelegate.cs │ │ ├── NSLayoutPriority.cs │ │ ├── NSLayoutRelation.cs │ │ ├── NSLevelIndicator.cs │ │ ├── NSLevelIndicatorCell.cs │ │ ├── NSLevelIndicatorStyle.cs │ │ ├── NSLineBreakMode.cs │ │ ├── NSLineCapStyle.cs │ │ ├── NSLineJoinStyle.cs │ │ ├── NSLineMovementDirection.cs │ │ ├── NSLineSweepDirection.cs │ │ ├── NSMatrix.cs │ │ ├── NSMatrixDelegate.cs │ │ ├── NSMatrixMode.cs │ │ ├── NSMenu.cs │ │ ├── NSMenuDelegate.cs │ │ ├── NSMenuItem.cs │ │ ├── NSMenuItemCell.cs │ │ ├── NSMenuProperty.cs │ │ ├── NSMenuView.cs │ │ ├── NSMutableFontCollection.cs │ │ ├── NSMutableParagraphStyle.cs │ │ ├── NSNib.cs │ │ ├── NSObjectController.cs │ │ ├── NSObjectPredicate.cs │ │ ├── NSOpenGLContext.cs │ │ ├── NSOpenGLContextParameter.cs │ │ ├── NSOpenGLGlobalOption.cs │ │ ├── NSOpenGLPixelBuffer.cs │ │ ├── NSOpenGLPixelFormat.cs │ │ ├── NSOpenGLPixelFormatAttribute.cs │ │ ├── NSOpenGLProfile.cs │ │ ├── NSOpenGLView.cs │ │ ├── NSOpenPanel.cs │ │ ├── NSOpenSaveCompare.cs │ │ ├── NSOpenSaveExpandingEventArgs.cs │ │ ├── NSOpenSaveFilename.cs │ │ ├── NSOpenSaveFilenameConfirmation.cs │ │ ├── NSOpenSaveFilenameEventArgs.cs │ │ ├── NSOpenSavePanelDelegate.cs │ │ ├── NSOpenSavePanelUrl.cs │ │ ├── NSOpenSavePanelUrlEventArgs.cs │ │ ├── NSOpenSavePanelValidate.cs │ │ ├── NSOutlineView.cs │ │ ├── NSOutlineViewDataSource.cs │ │ ├── NSOutlineViewDelegate.cs │ │ ├── NSPageLayout.cs │ │ ├── NSPanel.cs │ │ ├── NSPanelButtonType.cs │ │ ├── NSParagraphStyle.cs │ │ ├── NSPasteboard.cs │ │ ├── NSPasteboardItem.cs │ │ ├── NSPasteboardItemDataProvider.cs │ │ ├── NSPasteboardPredicate.cs │ │ ├── NSPasteboardReading.cs │ │ ├── NSPasteboardReadingOptions.cs │ │ ├── NSPasteboardWriting.cs │ │ ├── NSPasteboardWritingOptions.cs │ │ ├── NSPathCell.cs │ │ ├── NSPathCellDelegate.cs │ │ ├── NSPathCellDisplayPanelEventArgs.cs │ │ ├── NSPathCellMenuEventArgs.cs │ │ ├── NSPathComponentCell.cs │ │ ├── NSPathControl.cs │ │ ├── NSPathControlDelegate.cs │ │ ├── NSPathStyle.cs │ │ ├── NSPointingDeviceMask.cs │ │ ├── NSPointingDeviceType.cs │ │ ├── NSPopover.cs │ │ ├── NSPopoverAppearance.cs │ │ ├── NSPopoverBehavior.cs │ │ ├── NSPopoverCloseEventArgs.cs │ │ ├── NSPopoverCloseReason.cs │ │ ├── NSPopoverDelegate.cs │ │ ├── NSPrintInfo.cs │ │ ├── NSPrintOperation.cs │ │ ├── NSPrintPanel.cs │ │ ├── NSPrintPanelAccessorizing.cs │ │ ├── NSPrintPanelOptions.cs │ │ ├── NSPrintPreviewGraphicsContext.cs │ │ ├── NSPrinter.cs │ │ ├── NSPrinterTableStatus.cs │ │ ├── NSPrintingOrientation.cs │ │ ├── NSPrintingPageOrder.cs │ │ ├── NSPrintingPaginationMode.cs │ │ ├── NSProgressIndicator.cs │ │ ├── NSProgressIndicatorStyle.cs │ │ ├── NSProgressIndicatorThickness.cs │ │ ├── NSRectEdge.cs │ │ ├── NSRemoteNotificationType.cs │ │ ├── NSRemoteOpenPanel.cs │ │ ├── NSRemoteSavePanel.cs │ │ ├── NSRequestUserAttentionType.cs │ │ ├── NSResponder.cs │ │ ├── NSRuleEditor.cs │ │ ├── NSRuleEditorDelegate.cs │ │ ├── NSRuleEditorNestingMode.cs │ │ ├── NSRuleEditorNumberOfChildren.cs │ │ ├── NSRuleEditorRowType.cs │ │ ├── NSRulerEditorChildCriterion.cs │ │ ├── NSRulerEditorDisplayValue.cs │ │ ├── NSRulerEditorPredicateParts.cs │ │ ├── NSRulerMarker.cs │ │ ├── NSRulerOrientation.cs │ │ ├── NSRulerView.cs │ │ ├── NSRunResponse.cs │ │ ├── NSRunningApplication.cs │ │ ├── NSSaveOperationType.cs │ │ ├── NSSavePanel.cs │ │ ├── NSSavePanelComplete.cs │ │ ├── NSScreen.cs │ │ ├── NSScrollArrowPosition.cs │ │ ├── NSScrollElasticity.cs │ │ ├── NSScrollView.cs │ │ ├── NSScrollViewFindBarPosition.cs │ │ ├── NSScroller.cs │ │ ├── NSScrollerArrow.cs │ │ ├── NSScrollerKnobStyle.cs │ │ ├── NSScrollerPart.cs │ │ ├── NSScrollerStyle.cs │ │ ├── NSSelectionAffinity.cs │ │ ├── NSSelectionDirection.cs │ │ ├── NSSelectionGranularity.cs │ │ ├── NSShadow.cs │ │ ├── NSSharingContentScope.cs │ │ ├── NSSharingServiceHandler.cs │ │ ├── NSSound.cs │ │ ├── NSSoundDelegate.cs │ │ ├── NSSoundFinishedEventArgs.cs │ │ ├── NSStatusBar.cs │ │ ├── NSStatusItem.cs │ │ ├── NSStatusItemLength.cs │ │ ├── NSStepper.cs │ │ ├── NSSurfaceOrder.cs │ │ ├── NSSystemDefinedEvents.cs │ │ ├── NSTabState.cs │ │ ├── NSTabView.cs │ │ ├── NSTabViewDelegate.cs │ │ ├── NSTabViewItem.cs │ │ ├── NSTabViewItemEventArgs.cs │ │ ├── NSTabViewPredicate.cs │ │ ├── NSTabViewType.cs │ │ ├── NSTableCellView.cs │ │ ├── NSTableColumn.cs │ │ ├── NSTableColumnResizing.cs │ │ ├── NSTableHeaderCell.cs │ │ ├── NSTableHeaderView.cs │ │ ├── NSTableReorder.cs │ │ ├── NSTableRowView.cs │ │ ├── NSTableView.cs │ │ ├── NSTableViewAnimation.cs │ │ ├── NSTableViewCell.cs │ │ ├── NSTableViewCellEventArgs.cs │ │ ├── NSTableViewCellGetter.cs │ │ ├── NSTableViewColumnAutoresizingStyle.cs │ │ ├── NSTableViewColumnPredicate.cs │ │ ├── NSTableViewColumnRowPredicate.cs │ │ ├── NSTableViewColumnRowString.cs │ │ ├── NSTableViewColumnWidth.cs │ │ ├── NSTableViewDataSource.cs │ │ ├── NSTableViewDelegate.cs │ │ ├── NSTableViewDraggingDestinationFeedbackStyle.cs │ │ ├── NSTableViewDropOperation.cs │ │ ├── NSTableViewEventString.cs │ │ ├── NSTableViewGridStyle.cs │ │ ├── NSTableViewIndexFilter.cs │ │ ├── NSTableViewPredicate.cs │ │ ├── NSTableViewRowEventArgs.cs │ │ ├── NSTableViewRowGetter.cs │ │ ├── NSTableViewRowHandler.cs │ │ ├── NSTableViewRowHeight.cs │ │ ├── NSTableViewRowPredicate.cs │ │ ├── NSTableViewRowSizeStyle.cs │ │ ├── NSTableViewSearchString.cs │ │ ├── NSTableViewSelectionHighlightStyle.cs │ │ ├── NSTableViewSource.cs │ │ ├── NSTableViewTableEventArgs.cs │ │ ├── NSTableViewViewGetter.cs │ │ ├── NSText.cs │ │ ├── NSTextAlignment.cs │ │ ├── NSTextAttachment.cs │ │ ├── NSTextAttachmentCell.cs │ │ ├── NSTextBlock.cs │ │ ├── NSTextBlockDimension.cs │ │ ├── NSTextBlockLayer.cs │ │ ├── NSTextBlockValueType.cs │ │ ├── NSTextBlockVerticalAlignment.cs │ │ ├── NSTextContainer.cs │ │ ├── NSTextDelegate.cs │ │ ├── NSTextField.cs │ │ ├── NSTextFieldBezelStyle.cs │ │ ├── NSTextFieldCell.cs │ │ ├── NSTextFieldDelegate.cs │ │ ├── NSTextFinderAction.cs │ │ ├── NSTextInputClient.cs │ │ ├── NSTextInputContext.cs │ │ ├── NSTextList.cs │ │ ├── NSTextListOptions.cs │ │ ├── NSTextMovement.cs │ │ ├── NSTextPredicate.cs │ │ ├── NSTextStorage.cs │ │ ├── NSTextStorageDelegate.cs │ │ ├── NSTextStorageEditedFlags.cs │ │ ├── NSTextTab.cs │ │ ├── NSTextTabType.cs │ │ ├── NSTextTable.cs │ │ ├── NSTextTableBlock.cs │ │ ├── NSTextTableLayoutAlgorithm.cs │ │ ├── NSTextView.cs │ │ ├── NSTextViewCellPasteboard.cs │ │ ├── NSTextViewCellPosition.cs │ │ ├── NSTextViewChangeText.cs │ │ ├── NSTextViewClickedEventArgs.cs │ │ ├── NSTextViewCompletion.cs │ │ ├── NSTextViewDelegate.cs │ │ ├── NSTextViewDoubleClickEventArgs.cs │ │ ├── NSTextViewDraggedCellEventArgs.cs │ │ ├── NSTextViewEventMenu.cs │ │ ├── NSTextViewGetUndoManager.cs │ │ ├── NSTextViewLink.cs │ │ ├── NSTextViewOnTextCheck.cs │ │ ├── NSTextViewSelectionChange.cs │ │ ├── NSTextViewSelectionShouldChange.cs │ │ ├── NSTextViewSelectionWillChange.cs │ │ ├── NSTextViewSelectorCommand.cs │ │ ├── NSTextViewSpellingQuery.cs │ │ ├── NSTextViewTextChecked.cs │ │ ├── NSTextViewTooltip.cs │ │ ├── NSTextViewTypeAttribute.cs │ │ ├── NSTickMarkPosition.cs │ │ ├── NSTiffCompression.cs │ │ ├── NSTitlePosition.cs │ │ ├── NSTokenField.cs │ │ ├── NSTokenFieldDelegate.cs │ │ ├── NSTokenStyle.cs │ │ ├── NSToolbar.cs │ │ ├── NSToolbarDelegate.cs │ │ ├── NSToolbarDisplayMode.cs │ │ ├── NSToolbarIdentifiers.cs │ │ ├── NSToolbarItem.cs │ │ ├── NSToolbarSizeMode.cs │ │ ├── NSToolbarWillInsert.cs │ │ ├── NSTouch.cs │ │ ├── NSTouchPhase.cs │ │ ├── NSTrackingArea.cs │ │ ├── NSTrackingAreaOptions.cs │ │ ├── NSTreeController.cs │ │ ├── NSTreeNode.cs │ │ ├── NSType.cs │ │ ├── NSTypesetter.cs │ │ ├── NSTypesetterBehavior.cs │ │ ├── NSTypesetterControlCharacterAction.cs │ │ ├── NSUnderlinePattern.cs │ │ ├── NSUnderlineStyle.cs │ │ ├── NSUsableScrollerParts.cs │ │ ├── NSUserInterfaceLayoutDirection.cs │ │ ├── NSView.cs │ │ ├── NSViewAnimation.cs │ │ ├── NSViewController.cs │ │ ├── NSViewLayerContentsPlacement.cs │ │ ├── NSViewLayerContentsRedrawPolicy.cs │ │ ├── NSViewResizingMask.cs │ │ ├── NSWindingRule.cs │ │ ├── NSWindow.cs │ │ ├── NSWindowAnimationBehavior.cs │ │ ├── NSWindowApplicationPresentationOptions.cs │ │ ├── NSWindowBackingLocation.cs │ │ ├── NSWindowButton.cs │ │ ├── NSWindowClient.cs │ │ ├── NSWindowCoderEventArgs.cs │ │ ├── NSWindowCollectionBehavior.cs │ │ ├── NSWindowCompletionHandler.cs │ │ ├── NSWindowDelegate.cs │ │ ├── NSWindowDepth.cs │ │ ├── NSWindowDocumentDrag.cs │ │ ├── NSWindowDurationEventArgs.cs │ │ ├── NSWindowFrame.cs │ │ ├── NSWindowFramePredicate.cs │ │ ├── NSWindowLevel.cs │ │ ├── NSWindowMenu.cs │ │ ├── NSWindowNumberListOptions.cs │ │ ├── NSWindowOrderingMode.cs │ │ ├── NSWindowResize.cs │ │ ├── NSWindowRestoration.cs │ │ ├── NSWindowSharingType.cs │ │ ├── NSWindowSheetRect.cs │ │ ├── NSWindowSize.cs │ │ ├── NSWindowSizeSize.cs │ │ ├── NSWindowStyle.cs │ │ ├── NSWindowUndoManager.cs │ │ ├── NSWindowWindows.cs │ │ ├── NSWorkspace.cs │ │ ├── NSWorkspaceApplicationEventArgs.cs │ │ ├── NSWorkspaceFileOperationEventArgs.cs │ │ ├── NSWorkspaceIconCreationOptions.cs │ │ ├── NSWorkspaceLaunchOptions.cs │ │ ├── NSWorkspaceMountEventArgs.cs │ │ ├── NSWorkspaceRenamedEventArgs.cs │ │ ├── NSWorkspaceUrlHandler.cs │ │ ├── NSWritingDirection.cs │ │ └── OneShotTracker.cs │ ├── Constants.cs │ ├── CoreAnimation │ │ ├── CAAnimation.cs │ │ ├── CAAnimationDelegate.cs │ │ ├── CAAnimationGroup.cs │ │ ├── CAAnimationStateEventArgs.cs │ │ ├── CAAutoresizingMask.cs │ │ ├── CAConstraint.cs │ │ ├── CAConstraintAttribute.cs │ │ ├── CAConstraintLayoutManager.cs │ │ ├── CAEdgeAntialiasingMask.cs │ │ ├── CALayer.cs │ │ ├── CALayerDelegate.cs │ │ ├── CAMediaTimingFunction.cs │ │ ├── CATransform3D.cs │ │ └── CATransformLayer.cs │ ├── CoreData │ │ ├── NSAtomicStore.cs │ │ ├── NSAtomicStoreCacheNode.cs │ │ ├── NSAttributeDescription.cs │ │ ├── NSAttributeType.cs │ │ ├── NSDeleteRule.cs │ │ ├── NSEntityDescription.cs │ │ ├── NSEntityMapping.cs │ │ ├── NSEntityMappingType.cs │ │ ├── NSEntityMigrationPolicy.cs │ │ ├── NSFetchRequest.cs │ │ ├── NSFetchRequestResultType.cs │ │ ├── NSFetchedPropertyDescription.cs │ │ ├── NSIncrementalStore.cs │ │ ├── NSIncrementalStoreNode.cs │ │ ├── NSKeyValueSetMutationKind.cs │ │ ├── NSManagedObject.cs │ │ ├── NSManagedObjectContext.cs │ │ ├── NSManagedObjectContextConcurrencyType.cs │ │ ├── NSManagedObjectID.cs │ │ ├── NSManagedObjectModel.cs │ │ ├── NSMappingModel.cs │ │ ├── NSMergeConflict.cs │ │ ├── NSMergePolicy.cs │ │ ├── NSMergePolicyType.cs │ │ ├── NSMigrationManager.cs │ │ ├── NSPersistentStore.cs │ │ ├── NSPersistentStoreCoordinator.cs │ │ ├── NSPersistentStoreRequest.cs │ │ ├── NSPersistentStoreRequestType.cs │ │ ├── NSPropertyDescription.cs │ │ ├── NSPropertyMapping.cs │ │ ├── NSRelationshipDescription.cs │ │ └── NSSaveChangesRequest.cs │ ├── CoreFoundation │ │ ├── CFAllocator.cs │ │ ├── CFAllocatorFlags.cs │ │ ├── CFArray.cs │ │ ├── CFBoolean.cs │ │ ├── CFData.cs │ │ ├── CFDataBuffer.cs │ │ ├── CFDictionary.cs │ │ ├── CFErrorDomain.cs │ │ ├── CFException.cs │ │ ├── CFExceptionDataKey.cs │ │ ├── CFIndex.cs │ │ ├── CFMutableDictionary.cs │ │ ├── CFObject.cs │ │ ├── CFRange.cs │ │ ├── CFReadStream.cs │ │ ├── CFRunLoop.cs │ │ ├── CFRunLoopExitReason.cs │ │ ├── CFRunLoopSource.cs │ │ ├── CFRunLoopSourceContext.cs │ │ ├── CFRunLoopSourceCustom.cs │ │ ├── CFSocketCallBackType.cs │ │ ├── CFSocketError.cs │ │ ├── CFSocketException.cs │ │ ├── CFSocketFlags.cs │ │ ├── CFSocketNativeHandle.cs │ │ ├── CFStream.cs │ │ ├── CFStreamClientContext.cs │ │ ├── CFStreamEventType.cs │ │ ├── CFStreamStatus.cs │ │ ├── CFString.cs │ │ ├── CFType.cs │ │ ├── CFUrl.cs │ │ ├── CFUrlPathStyle.cs │ │ ├── CFWriteStream.cs │ │ ├── DispatchGroup.cs │ │ ├── DispatchObject.cs │ │ ├── DispatchQueue.cs │ │ ├── DispatchQueuePriority.cs │ │ ├── DispatchQueueSynchronizationContext.cs │ │ ├── DispatchTime.cs │ │ ├── ICFType.cs │ │ └── Tuple.cs │ ├── CoreGraphics │ │ ├── CGAffineTransform.cs │ │ ├── CGBitmapContext.cs │ │ ├── CGBitmapFlags.cs │ │ ├── CGBlendMode.cs │ │ ├── CGColor.cs │ │ ├── CGColorRenderingIntent.cs │ │ ├── CGColorSpace.cs │ │ ├── CGColorSpaceModel.cs │ │ ├── CGContext.cs │ │ ├── CGContextPDF.cs │ │ ├── CGDataConsumer.cs │ │ ├── CGDataProvider.cs │ │ ├── CGFont.cs │ │ ├── CGFunction.cs │ │ ├── CGGradient.cs │ │ ├── CGGradientDrawingOptions.cs │ │ ├── CGImage.cs │ │ ├── CGImageAlphaInfo.cs │ │ ├── CGImageColorModel.cs │ │ ├── CGInterpolationQuality.cs │ │ ├── CGLayer.cs │ │ ├── CGLineCap.cs │ │ ├── CGLineJoin.cs │ │ ├── CGPDFArray.cs │ │ ├── CGPDFBox.cs │ │ ├── CGPDFDictionary.cs │ │ ├── CGPDFDocument.cs │ │ ├── CGPDFInfo.cs │ │ ├── CGPDFPage.cs │ │ ├── CGPDFPageInfo.cs │ │ ├── CGPDFStream.cs │ │ ├── CGPDFString.cs │ │ ├── CGPath.cs │ │ ├── CGPathDrawingMode.cs │ │ ├── CGPathElement.cs │ │ ├── CGPathElementType.cs │ │ ├── CGPattern.cs │ │ ├── CGPatternCallbacks.cs │ │ ├── CGPatternTiling.cs │ │ ├── CGPoint.cs │ │ ├── CGRect.cs │ │ ├── CGShading.cs │ │ ├── CGSize.cs │ │ ├── CGTextDrawingMode.cs │ │ ├── CGTextEncoding.cs │ │ ├── CGWindowImageOption.cs │ │ ├── CGWindowListOption.cs │ │ ├── DrawPatternCallback.cs │ │ ├── NSRectEdge.cs │ │ ├── RectangleFExtensions.cs │ │ └── ReleaseInfoCallback.cs │ ├── CoreImage │ │ ├── CIAdditionCompositing.cs │ │ ├── CIAffineClamp.cs │ │ ├── CIAffineFilter.cs │ │ ├── CIAffineTile.cs │ │ ├── CIAffineTransform.cs │ │ ├── CIAutoAdjustmentFilterOptions.cs │ │ ├── CIBarsSwipeTransition.cs │ │ ├── CIBlendFilter.cs │ │ ├── CIBlendWithMask.cs │ │ ├── CIBloom.cs │ │ ├── CICheckerboardGenerator.cs │ │ ├── CICircleSplashDistortion.cs │ │ ├── CICircularScreen.cs │ │ ├── CIColor.cs │ │ ├── CIColorBlendMode.cs │ │ ├── CIColorBurnBlendMode.cs │ │ ├── CIColorControls.cs │ │ ├── CIColorCube.cs │ │ ├── CIColorDodgeBlendMode.cs │ │ ├── CIColorInvert.cs │ │ ├── CIColorMap.cs │ │ ├── CIColorMatrix.cs │ │ ├── CIColorMonochrome.cs │ │ ├── CIColorPosterize.cs │ │ ├── CICompositingFilter.cs │ │ ├── CIConstantColorGenerator.cs │ │ ├── CIContext.cs │ │ ├── CIContextOptions.cs │ │ ├── CICopyMachineTransition.cs │ │ ├── CICrop.cs │ │ ├── CIDarkenBlendMode.cs │ │ ├── CIDepthOfField.cs │ │ ├── CIDetector.cs │ │ ├── CIDifferenceBlendMode.cs │ │ ├── CIDisintegrateWithMaskTransition.cs │ │ ├── CIDissolveTransition.cs │ │ ├── CIDistortionFilter.cs │ │ ├── CIDotScreen.cs │ │ ├── CIEightfoldReflectedTile.cs │ │ ├── CIExclusionBlendMode.cs │ │ ├── CIExposureAdjust.cs │ │ ├── CIFaceBalance.cs │ │ ├── CIFaceFeature.cs │ │ ├── CIFalseColor.cs │ │ ├── CIFeature.cs │ │ ├── CIFilter.cs │ │ ├── CIFilterApply.cs │ │ ├── CIFilterAttributes.cs │ │ ├── CIFilterCategory.cs │ │ ├── CIFilterGenerator.cs │ │ ├── CIFilterInputKey.cs │ │ ├── CIFilterMode.cs │ │ ├── CIFilterOutputKey.cs │ │ ├── CIFilterShape.cs │ │ ├── CIFlashTransition.cs │ │ ├── CIFormat.cs │ │ ├── CIFourfoldReflectedTile.cs │ │ ├── CIFourfoldRotatedTile.cs │ │ ├── CIFourfoldTranslatedTile.cs │ │ ├── CIGammaAdjust.cs │ │ ├── CIGaussianBlur.cs │ │ ├── CIGaussianGradient.cs │ │ ├── CIGlideReflectedTile.cs │ │ ├── CIGloom.cs │ │ ├── CIHardLightBlendMode.cs │ │ ├── CIHatchedScreen.cs │ │ ├── CIHighlightShadowAdjust.cs │ │ ├── CIHoleDistortion.cs │ │ ├── CIHueAdjust.cs │ │ ├── CIHueBlendMode.cs │ │ ├── CIImage.cs │ │ ├── CIImageAccumulator.cs │ │ ├── CIImageInitializationOptions.cs │ │ ├── CIImageOrientation.cs │ │ ├── CIKernel.cs │ │ ├── CILanczosScaleTransform.cs │ │ ├── CILightenBlendMode.cs │ │ ├── CILineScreen.cs │ │ ├── CILinearGradient.cs │ │ ├── CILuminosityBlendMode.cs │ │ ├── CIMaskToAlpha.cs │ │ ├── CIMaximumComponent.cs │ │ ├── CIMaximumCompositing.cs │ │ ├── CIMinimumComponent.cs │ │ ├── CIMinimumCompositing.cs │ │ ├── CIModTransition.cs │ │ ├── CIMultiplyBlendMode.cs │ │ ├── CIMultiplyCompositing.cs │ │ ├── CIOverlayBlendMode.cs │ │ ├── CIPageCurlTransition.cs │ │ ├── CIPerspectiveTile.cs │ │ ├── CIPerspectiveTransform.cs │ │ ├── CIPinchDistortion.cs │ │ ├── CIPixellate.cs │ │ ├── CIPlugIn.cs │ │ ├── CIRadialGradient.cs │ │ ├── CIRandomGenerator.cs │ │ ├── CIRippleTransition.cs │ │ ├── CISampler.cs │ │ ├── CISamplerOptions.cs │ │ ├── CISaturationBlendMode.cs │ │ ├── CIScreenBlendMode.cs │ │ ├── CIScreenFilter.cs │ │ ├── CISepiaTone.cs │ │ ├── CISharpenLuminance.cs │ │ ├── CISixfoldReflectedTile.cs │ │ ├── CISixfoldRotatedTile.cs │ │ ├── CISoftLightBlendMode.cs │ │ ├── CISourceAtopCompositing.cs │ │ ├── CISourceInCompositing.cs │ │ ├── CISourceOutCompositing.cs │ │ ├── CISourceOverCompositing.cs │ │ ├── CIStarShineGenerator.cs │ │ ├── CIStraightenFilter.cs │ │ ├── CIStripesGenerator.cs │ │ ├── CISwipeTransition.cs │ │ ├── CITemperatureAndTint.cs │ │ ├── CITileFilter.cs │ │ ├── CIToneCurve.cs │ │ ├── CITransitionFilter.cs │ │ ├── CITwelvefoldReflectedTile.cs │ │ ├── CITwirlDistortion.cs │ │ ├── CIUIParameterSet.cs │ │ ├── CIUnsharpMask.cs │ │ ├── CIVector.cs │ │ ├── CIVibrance.cs │ │ ├── CIVortexDistortion.cs │ │ ├── CIWhitePointAdjust.cs │ │ ├── CIWrapMode.cs │ │ └── FaceDetectorAccuracy.cs │ ├── CoreLocation │ │ ├── CLActivityType.cs │ │ ├── CLAuthorizationChangedEventArgs.cs │ │ ├── CLAuthorizationStatus.cs │ │ ├── CLAuthroziationChangedEventArgs.cs │ │ ├── CLDeviceOrientation.cs │ │ ├── CLError.cs │ │ ├── CLLocation.cs │ │ ├── CLLocationCoordinate2D.cs │ │ ├── CLLocationManager.cs │ │ ├── CLLocationManagerDelegate.cs │ │ ├── CLLocationManagerEventArgs.cs │ │ ├── CLLocationUpdatedEventArgs.cs │ │ └── CLLocationsUpdatedEventArgs.cs │ ├── CoreMedia │ │ ├── .DS_Store │ │ ├── CMTime.cs │ │ ├── CMTimeMapping.cs │ │ ├── CMTimeRange.cs │ │ └── CMTimeRoundingMethod.cs │ ├── CoreServices │ │ ├── CFHTTPAuthentication.cs │ │ ├── CFHTTPMessage.cs │ │ ├── CFHTTPStream.cs │ │ └── CFHost.cs │ ├── CoreText │ │ ├── Adapter.cs │ │ ├── CTBaselineClass.cs │ │ ├── CTBaselineClassID.cs │ │ ├── CTBaselineFondID.cs │ │ ├── CTBaselineFont.cs │ │ ├── CTCharacterCollection.cs │ │ ├── CTFont.cs │ │ ├── CTFontCollection.cs │ │ ├── CTFontCollectionOptionKey.cs │ │ ├── CTFontCollectionOptions.cs │ │ ├── CTFontDescriptor.cs │ │ ├── CTFontDescriptorAttributeKey.cs │ │ ├── CTFontDescriptorAttributes.cs │ │ ├── CTFontDescriptorMatchingState.cs │ │ ├── CTFontFeatureAllTypographicFeatures.cs │ │ ├── CTFontFeatureAlternateKana.cs │ │ ├── CTFontFeatureAnnotation.cs │ │ ├── CTFontFeatureCJKRomanSpacing.cs │ │ ├── CTFontFeatureCJKSymbolAlternatives.cs │ │ ├── CTFontFeatureCJKVerticalRomanPlacement.cs │ │ ├── CTFontFeatureCaseSensitiveLayout.cs │ │ ├── CTFontFeatureCharacterAlternatives.cs │ │ ├── CTFontFeatureCharacterShape.cs │ │ ├── CTFontFeatureContextualAlternates.cs │ │ ├── CTFontFeatureCursiveConnection.cs │ │ ├── CTFontFeatureDesignComplexity.cs │ │ ├── CTFontFeatureDiacritics.cs │ │ ├── CTFontFeatureFractions.cs │ │ ├── CTFontFeatureIdeographicAlternatives.cs │ │ ├── CTFontFeatureIdeographicSpacing.cs │ │ ├── CTFontFeatureItalicCJKRoman.cs │ │ ├── CTFontFeatureKanaSpacing.cs │ │ ├── CTFontFeatureKey.cs │ │ ├── CTFontFeatureLetterCase.cs │ │ ├── CTFontFeatureLigatures.cs │ │ ├── CTFontFeatureLinguisticRearrangementConnection.cs │ │ ├── CTFontFeatureLowerCase.cs │ │ ├── CTFontFeatureMathematicalExtras.cs │ │ ├── CTFontFeatureNumberCase.cs │ │ ├── CTFontFeatureNumberSpacing.cs │ │ ├── CTFontFeatureOrnamentSets.cs │ │ ├── CTFontFeatureOverlappingCharacters.cs │ │ ├── CTFontFeatureRubyKana.cs │ │ ├── CTFontFeatureSelectorKey.cs │ │ ├── CTFontFeatureSelectors.cs │ │ ├── CTFontFeatureSettings.cs │ │ ├── CTFontFeatureSmartSwash.cs │ │ ├── CTFontFeatureStyleOptions.cs │ │ ├── CTFontFeatureStylisticAlternatives.cs │ │ ├── CTFontFeatureTextSpacing.cs │ │ ├── CTFontFeatureTransliteration.cs │ │ ├── CTFontFeatureTypographicExtras.cs │ │ ├── CTFontFeatureUnicodeDecomposition.cs │ │ ├── CTFontFeatureUpperCase.cs │ │ ├── CTFontFeatureVerticalPosition.cs │ │ ├── CTFontFeatureVerticalSubstitutionConnection.cs │ │ ├── CTFontFeatures.cs │ │ ├── CTFontFormat.cs │ │ ├── CTFontManager.cs │ │ ├── CTFontManagerAutoActivation.cs │ │ ├── CTFontManagerError.cs │ │ ├── CTFontManagerScope.cs │ │ ├── CTFontNameKey.cs │ │ ├── CTFontNameKeyId.cs │ │ ├── CTFontOptions.cs │ │ ├── CTFontOrientation.cs │ │ ├── CTFontPriority.cs │ │ ├── CTFontStylisticClass.cs │ │ ├── CTFontSymbolicTraits.cs │ │ ├── CTFontTable.cs │ │ ├── CTFontTableOptions.cs │ │ ├── CTFontTraitKey.cs │ │ ├── CTFontTraits.cs │ │ ├── CTFontUIFontType.cs │ │ ├── CTFontVariation.cs │ │ ├── CTFontVariationAxes.cs │ │ ├── CTFontVariationAxisKey.cs │ │ ├── CTFrame.cs │ │ ├── CTFrameAttributeKey.cs │ │ ├── CTFrameAttributes.cs │ │ ├── CTFramePathFillRule.cs │ │ ├── CTFrameProgression.cs │ │ ├── CTFramesetter.cs │ │ ├── CTGlyphInfo.cs │ │ ├── CTLigatureFormation.cs │ │ ├── CTLine.cs │ │ ├── CTLineBoundsOptions.cs │ │ ├── CTLineBreakMode.cs │ │ ├── CTLineTruncation.cs │ │ ├── CTParagraphStyle.cs │ │ ├── CTParagraphStyleSetting.cs │ │ ├── CTParagraphStyleSettingValue.cs │ │ ├── CTParagraphStyleSettings.cs │ │ ├── CTParagraphStyleSpecifier.cs │ │ ├── CTParagraphStyleSpecifierByteValue.cs │ │ ├── CTParagraphStyleSpecifierIntPtrsValue.cs │ │ ├── CTParagraphStyleSpecifierSingleValue.cs │ │ ├── CTParagraphStyleSpecifierValue.cs │ │ ├── CTRun.cs │ │ ├── CTRunDelegate.cs │ │ ├── CTRunDelegateCallbacks.cs │ │ ├── CTRunDelegateDeallocateCallback.cs │ │ ├── CTRunDelegateGetAscentCallback.cs │ │ ├── CTRunDelegateGetDescentCallback.cs │ │ ├── CTRunDelegateGetWidthCallback.cs │ │ ├── CTRunDelegateOperations.cs │ │ ├── CTRunDelegateVersion.cs │ │ ├── CTRunStatus.cs │ │ ├── CTStringAttributeKey.cs │ │ ├── CTStringAttributes.cs │ │ ├── CTSuperscriptStyle.cs │ │ ├── CTTextAlignment.cs │ │ ├── CTTextTab.cs │ │ ├── CTTextTabOptionKey.cs │ │ ├── CTTextTabOptions.cs │ │ ├── CTTypesetter.cs │ │ ├── CTTypesetterOptionKey.cs │ │ ├── CTTypesetterOptions.cs │ │ ├── CTUnderlineStyle.cs │ │ ├── CTUnderlineStyleModifiers.cs │ │ ├── CTWritingDirection.cs │ │ ├── ConstructorError.cs │ │ └── FontFeatureGroup.cs │ ├── CoreVideo │ │ ├── CVBuffer.cs │ │ ├── CVDisplayLink.cs │ │ ├── CVImageBuffer.cs │ │ ├── CVPixelBuffer.cs │ │ ├── CVPixelBufferAttributes.cs │ │ ├── CVPixelBufferPool.cs │ │ ├── CVPixelBufferPoolSettings.cs │ │ ├── CVPixelFormatDescription.cs │ │ ├── CVTime.cs │ │ └── CoreVideo.cs │ ├── Foundation │ │ ├── AEEventClass.cs │ │ ├── AEEventID.cs │ │ ├── ActionAttribute.cs │ │ ├── AdviceAttribute.cs │ │ ├── ConnectAttribute.cs │ │ ├── DictionaryContainer.cs │ │ ├── ExportAttribute.cs │ │ ├── FieldAttribute.cs │ │ ├── InternalNSNotificationHandler.cs │ │ ├── LinkerSafeAttribute.cs │ │ ├── ModelAttribute.cs │ │ ├── ModelNotImplementedException.cs │ │ ├── NSAction.cs │ │ ├── NSActionDispatcher.cs │ │ ├── NSAffineTransform.cs │ │ ├── NSAlignmentOptions.cs │ │ ├── NSAppleEventDescriptor.cs │ │ ├── NSAppleEventManager.cs │ │ ├── NSArchiveReplaceEventArgs.cs │ │ ├── NSArray.cs │ │ ├── NSAsyncActionDispatcher.cs │ │ ├── NSAttributedRangeCallback.cs │ │ ├── NSAttributedString.cs │ │ ├── NSAttributedStringCallback.cs │ │ ├── NSAttributedStringEnumeration.cs │ │ ├── NSAutoreleasePool.cs │ │ ├── NSBlockOperation.cs │ │ ├── NSBundle.cs │ │ ├── NSBundleExecutableArchitecture.cs │ │ ├── NSByteCountFormatter.cs │ │ ├── NSByteCountFormatterCountStyle.cs │ │ ├── NSByteCountFormatterUnits.cs │ │ ├── NSCache.cs │ │ ├── NSCacheDelegate.cs │ │ ├── NSCachedUrlResponse.cs │ │ ├── NSCalculationError.cs │ │ ├── NSCalendar.cs │ │ ├── NSCalendarType.cs │ │ ├── NSCalendarUnit.cs │ │ ├── NSCharacterSet.cs │ │ ├── NSCoder.cs │ │ ├── NSComparator.cs │ │ ├── NSComparisonPredicate.cs │ │ ├── NSComparisonPredicateModifier.cs │ │ ├── NSComparisonPredicateOptions.cs │ │ ├── NSComparisonResult.cs │ │ ├── NSCompoundPredicate.cs │ │ ├── NSCompoundPredicateType.cs │ │ ├── NSConnection.cs │ │ ├── NSConnectionDelegate.cs │ │ ├── NSData.cs │ │ ├── NSDataReadingOptions.cs │ │ ├── NSDataSearchOptions.cs │ │ ├── NSDataWritingOptions.cs │ │ ├── NSDate.cs │ │ ├── NSDateComponents.cs │ │ ├── NSDateComponentsWrappingBehavior.cs │ │ ├── NSDateFormatter.cs │ │ ├── NSDateFormatterBehavior.cs │ │ ├── NSDateFormatterStyle.cs │ │ ├── NSDecimal.cs │ │ ├── NSDecimalNumber.cs │ │ ├── NSDecoderCallback.cs │ │ ├── NSDecoderHandler.cs │ │ ├── NSDictionary.cs │ │ ├── NSDirectoryEnumerationOptions.cs │ │ ├── NSDirectoryEnumerator.cs │ │ ├── NSDistantObjectRequest.cs │ │ ├── NSDistributedNotificationCenter.cs │ │ ├── NSEncodeHook.cs │ │ ├── NSEnumerateErrorHandler.cs │ │ ├── NSEnumerationOptions.cs │ │ ├── NSEnumerator.cs │ │ ├── NSError.cs │ │ ├── NSErrorEventArgs.cs │ │ ├── NSErrorException.cs │ │ ├── NSException.cs │ │ ├── NSExpression.cs │ │ ├── NSExpressionHandler.cs │ │ ├── NSExpressionType.cs │ │ ├── NSFileAttributes.cs │ │ ├── NSFileCoordinator.cs │ │ ├── NSFileCoordinatorReadingOptions.cs │ │ ├── NSFileCoordinatorWorker.cs │ │ ├── NSFileCoordinatorWorkerRW.cs │ │ ├── NSFileCoordinatorWritingOptions.cs │ │ ├── NSFileHandle.cs │ │ ├── NSFileHandleConnectionAcceptedEventArgs.cs │ │ ├── NSFileHandleReadEventArgs.cs │ │ ├── NSFileHandleUpdateHandler.cs │ │ ├── NSFileManager.cs │ │ ├── NSFileManagerDelegate.cs │ │ ├── NSFileManagerItemReplacementOptions.cs │ │ ├── NSFilePresenter.cs │ │ ├── NSFileSystemAttributes.cs │ │ ├── NSFileType.cs │ │ ├── NSFileVersion.cs │ │ ├── NSFileVersionAddingOptions.cs │ │ ├── NSFileVersionReplacingOptions.cs │ │ ├── NSFileWrapper.cs │ │ ├── NSFileWrapperReadingOptions.cs │ │ ├── NSFileWrapperWritingOptions.cs │ │ ├── NSFormatter.cs │ │ ├── NSHttpCookie.cs │ │ ├── NSHttpCookieAcceptPolicy.cs │ │ ├── NSHttpCookieStorage.cs │ │ ├── NSHttpUrlResponse.cs │ │ ├── NSIndexPath.cs │ │ ├── NSIndexSet.cs │ │ ├── NSInputStream.cs │ │ ├── NSInvocation.cs │ │ ├── NSJsonReadingOptions.cs │ │ ├── NSJsonSerialization.cs │ │ ├── NSJsonWritingOptions.cs │ │ ├── NSKeyValueChange.cs │ │ ├── NSKeyValueObservingOptions.cs │ │ ├── NSKeyValueSetMutationKind.cs │ │ ├── NSKeyedArchiver.cs │ │ ├── NSKeyedArchiverDelegate.cs │ │ ├── NSKeyedUnarchiver.cs │ │ ├── NSKeyedUnarchiverDelegate.cs │ │ ├── NSLinguisticTag.cs │ │ ├── NSLinguisticTagger.cs │ │ ├── NSLinguisticTaggerOptions.cs │ │ ├── NSLingusticEnumerator.cs │ │ ├── NSLocale.cs │ │ ├── NSLocaleLanguageDirection.cs │ │ ├── NSMachPort.cs │ │ ├── NSMachPortDelegate.cs │ │ ├── NSMachPortRights.cs │ │ ├── NSMetadataItem.cs │ │ ├── NSMetadataQuery.cs │ │ ├── NSMetadataQueryAttributeValueTuple.cs │ │ ├── NSMetadataQueryDelegate.cs │ │ ├── NSMetadataQueryObject.cs │ │ ├── NSMetadataQueryResultGroup.cs │ │ ├── NSMetadataQueryValue.cs │ │ ├── NSMethodSignature.cs │ │ ├── NSMutableArray.cs │ │ ├── NSMutableAttributedString.cs │ │ ├── NSMutableCharacterSet.cs │ │ ├── NSMutableData.cs │ │ ├── NSMutableDictionary.cs │ │ ├── NSMutableIndexSet.cs │ │ ├── NSMutableOrderedSet.cs │ │ ├── NSMutableSet.cs │ │ ├── NSMutableUrlRequest.cs │ │ ├── NSNetDomainEventArgs.cs │ │ ├── NSNetService.cs │ │ ├── NSNetServiceBrowser.cs │ │ ├── NSNetServiceBrowserDelegate.cs │ │ ├── NSNetServiceDataEventArgs.cs │ │ ├── NSNetServiceDelegate.cs │ │ ├── NSNetServiceErrorEventArgs.cs │ │ ├── NSNetServiceEventArgs.cs │ │ ├── NSNetServiceOptions.cs │ │ ├── NSNetServicesStatus.cs │ │ ├── NSNotification.cs │ │ ├── NSNotificationCenter.cs │ │ ├── NSNotificationCoalescing.cs │ │ ├── NSNotificationEventArgs.cs │ │ ├── NSNotificationFlags.cs │ │ ├── NSNotificationHandler.cs │ │ ├── NSNotificationQueue.cs │ │ ├── NSNotificationSuspensionBehavior.cs │ │ ├── NSNull.cs │ │ ├── NSNumber.cs │ │ ├── NSNumberFormatter.cs │ │ ├── NSNumberFormatterBehavior.cs │ │ ├── NSNumberFormatterPadPosition.cs │ │ ├── NSNumberFormatterRoundingMode.cs │ │ ├── NSNumberFormatterStyle.cs │ │ ├── NSObject.cs │ │ ├── NSObjectEventArgs.cs │ │ ├── NSObjectFlag.cs │ │ ├── NSOperation.cs │ │ ├── NSOperationQueue.cs │ │ ├── NSOperationQueuePriority.cs │ │ ├── NSOrderedSet.cs │ │ ├── NSOrthography.cs │ │ ├── NSOutputStream.cs │ │ ├── NSPipe.cs │ │ ├── NSPort.cs │ │ ├── NSPortDelegate.cs │ │ ├── NSPortMessage.cs │ │ ├── NSPortNameServer.cs │ │ ├── NSPostingStyle.cs │ │ ├── NSPredicate.cs │ │ ├── NSPredicateEvaluator.cs │ │ ├── NSPredicateOperatorType.cs │ │ ├── NSProcessInfo.cs │ │ ├── NSPropertyListFormat.cs │ │ ├── NSPropertyListMutabilityOptions.cs │ │ ├── NSPropertyListReadOptions.cs │ │ ├── NSPropertyListSerialization.cs │ │ ├── NSPropertyListWriteOptions.cs │ │ ├── NSPurgeableData.cs │ │ ├── NSRange.cs │ │ ├── NSRangeIterator.cs │ │ ├── NSRoundingMode.cs │ │ ├── NSRunLoop.cs │ │ ├── NSRunLoopMode.cs │ │ ├── NSSearchPath.cs │ │ ├── NSSearchPathDirectory.cs │ │ ├── NSSearchPathDomain.cs │ │ ├── NSSet.cs │ │ ├── NSSetEnumerator.cs │ │ ├── NSSortDescriptor.cs │ │ ├── NSSortOptions.cs │ │ ├── NSStream.cs │ │ ├── NSStreamDelegate.cs │ │ ├── NSStreamEvent.cs │ │ ├── NSStreamEventArgs.cs │ │ ├── NSStreamStatus.cs │ │ ├── NSString.cs │ │ ├── NSStringCompareOptions.cs │ │ ├── NSStringDrawingOptions.cs │ │ ├── NSStringEncoding.cs │ │ ├── NSTask.cs │ │ ├── NSTaskTerminationReason.cs │ │ ├── NSTextCheckingResult.cs │ │ ├── NSTextCheckingType.cs │ │ ├── NSTextCheckingTypes.cs │ │ ├── NSThread.cs │ │ ├── NSTimeZone.cs │ │ ├── NSTimer.cs │ │ ├── NSUbiquitousKeyValueStore.cs │ │ ├── NSUbiquitousKeyValueStoreChangeEventArgs.cs │ │ ├── NSUbiquitousKeyValueStoreChangeReason.cs │ │ ├── NSUndoManager.cs │ │ ├── NSUndoManagerCloseUndoGroupEventArgs.cs │ │ ├── NSUrl.cs │ │ ├── NSUrlAsyncResult.cs │ │ ├── NSUrlAuthenticationChallenge.cs │ │ ├── NSUrlBookmarkCreationOptions.cs │ │ ├── NSUrlBookmarkResolutionOptions.cs │ │ ├── NSUrlCache.cs │ │ ├── NSUrlCacheStoragePolicy.cs │ │ ├── NSUrlConnection.cs │ │ ├── NSUrlConnectionDataResponse.cs │ │ ├── NSUrlConnectionDelegate.cs │ │ ├── NSUrlConnectionDownloadDelegate.cs │ │ ├── NSUrlCredential.cs │ │ ├── NSUrlCredentialPersistence.cs │ │ ├── NSUrlCredentialStorage.cs │ │ ├── NSUrlDownload.cs │ │ ├── NSUrlDownloadDelegate.cs │ │ ├── NSUrlError.cs │ │ ├── NSUrlProtectionSpace.cs │ │ ├── NSUrlProtocol.cs │ │ ├── NSUrlProtocolClient.cs │ │ ├── NSUrlRequest.cs │ │ ├── NSUrlRequestCachePolicy.cs │ │ ├── NSUrlRequestNetworkServiceType.cs │ │ ├── NSUrlResponse.cs │ │ ├── NSUserDefaults.cs │ │ ├── NSUserNotification.cs │ │ ├── NSUserNotificationActivationType.cs │ │ ├── NSUserNotificationCenter.cs │ │ ├── NSUserNotificationCenterDelegate.cs │ │ ├── NSUuid.cs │ │ ├── NSValue.cs │ │ ├── NSValueTransformer.cs │ │ ├── NSVolumeEnumerationOptions.cs │ │ ├── NSWritingDirection.cs │ │ ├── ObjCException.cs │ │ ├── OutletAttribute.cs │ │ ├── PreserveAttribute.cs │ │ ├── ProtocolAttribute.cs │ │ ├── RegisterAttribute.cs │ │ ├── UNCDidActivateNotificationEventArgs.cs │ │ ├── UNCDidDeliverNotificationEventArgs.cs │ │ ├── UNCShouldPresentNotification.cs │ │ └── You_Should_Not_Call_base_In_This_Method.cs │ ├── HttpVersion.cs │ ├── Libraries.cs │ ├── MonoNativeFunctionWrapperAttribute.cs │ ├── MonoPInvokeCallbackAttribute.cs │ ├── ObjCRuntime │ │ ├── AdoptsAttribute.cs │ │ ├── AlphaAttribute.cs │ │ ├── ArgumentSemantic.cs │ │ ├── BlockDescriptor.cs │ │ ├── BlockFlags.cs │ │ ├── BlockLiteral.cs │ │ ├── Class.cs │ │ ├── CompileFlagsAttribute.cs │ │ ├── Dlfcn.cs │ │ ├── ElCapitanAttribute.cs │ │ ├── INativeObject.cs │ │ ├── LionAttribute.cs │ │ ├── MavericksAttribute.cs │ │ ├── Messaging.cs │ │ ├── MethodDescription.cs │ │ ├── MountainLionAttribute.cs │ │ ├── NSObjectMarshaler.cs │ │ ├── NativeConstructorBuilder.cs │ │ ├── NativeImplementationBuilder.cs │ │ ├── NativeMethodBuilder.cs │ │ ├── Runtime.cs │ │ ├── Selector.cs │ │ ├── SelectorMarshaler.cs │ │ ├── SinceAttribute.cs │ │ ├── ThreadSafeAttribute.cs │ │ ├── TypeConverter.cs │ │ └── YosemiteAttribute.cs │ ├── OpenGL │ │ ├── CGLContext.cs │ │ ├── CGLErrorCode.cs │ │ ├── CGLPixelFormat.cs │ │ └── CGLPixelFormatAttribute.cs │ ├── QTKit │ │ ├── QTTime.cs │ │ ├── QTTimeRange.cs │ │ └── TimeFlags.cs │ ├── QuickLook │ │ └── QLThumbnailImage.cs │ ├── RequiredFrameworkAttribute.cs │ ├── Security │ │ ├── Authorization.cs │ │ ├── AuthorizationEnvironment.cs │ │ ├── AuthorizationFlags.cs │ │ ├── AuthorizationItem.cs │ │ ├── AuthorizationItemSet.cs │ │ ├── AuthorizationParameters.cs │ │ ├── AuthorizationStatus.cs │ │ ├── ClassKeys.cs │ │ ├── KeyTypeKeys.cs │ │ ├── KeysAccessible.cs │ │ ├── KeysAuthenticationType.cs │ │ ├── SecAccessible.cs │ │ ├── SecAttributeKey.cs │ │ ├── SecAuthenticationType.cs │ │ ├── SecCertificate.cs │ │ ├── SecClass.cs │ │ ├── SecIdentity.cs │ │ ├── SecItem.cs │ │ ├── SecKey.cs │ │ ├── SecKeyChain.cs │ │ ├── SecKeyClass.cs │ │ ├── SecKeyType.cs │ │ ├── SecKind.cs │ │ ├── SecMatchLimit.cs │ │ ├── SecPadding.cs │ │ ├── SecPolicy.cs │ │ ├── SecProtocol.cs │ │ ├── SecProtocolKeys.cs │ │ ├── SecRecord.cs │ │ ├── SecStatusCode.cs │ │ ├── SecTrust.cs │ │ ├── SecTrustResult.cs │ │ └── SecurityException.cs │ └── Trampolines.cs ├── MacPlatform.cs ├── NativeHost.cs ├── NotifyIconImpl.cs ├── OpenGL │ ├── CGLError.cs │ ├── CGLOpenGLProfile.cs │ ├── Cgl.cs │ ├── CglContext.cs │ └── CglPixelFormatAttribute.cs ├── OpenGLView.cs ├── ScreenImpl.cs ├── WindowImpl.cs ├── _Xamarin-macios.LICENSE.md ├── resizeeastwest.png ├── resizenortheastsouthwest.png ├── resizenorthsouth.png └── resizenorthwestsoutheast.png ├── CPF.Razor ├── CPF.Razor.csproj ├── Controls │ ├── Button.cs │ ├── CheckBox.cs │ ├── DockPanel.cs │ ├── Element.cs │ ├── Grid.cs │ ├── Panel.cs │ ├── ResponsivePanel.cs │ ├── StackPanel.cs │ ├── TestElement.cs │ ├── WindowFrame.cs │ ├── WrapPanel.cs │ └── generated │ │ ├── Border.generated.cs │ │ ├── Button.generated.cs │ │ ├── Calendar.generated.cs │ │ ├── Chart.generated.cs │ │ ├── CheckBox.generated.cs │ │ ├── CodeTextBox.generated.cs │ │ ├── ComboBox.generated.cs │ │ ├── ContentControl.generated.cs │ │ ├── Control.generated.cs │ │ ├── DataGrid.generated.cs │ │ ├── DatePicker.generated.cs │ │ ├── Decorator.generated.cs │ │ ├── DockPanel.generated.cs │ │ ├── DocumentBlock.generated.cs │ │ ├── Ellipse.generated.cs │ │ ├── Expander.generated.cs │ │ ├── Grid.generated.cs │ │ ├── GridSplitter.generated.cs │ │ ├── Label.generated.cs │ │ ├── Line.generated.cs │ │ ├── ListBox.generated.cs │ │ ├── NativeElement.generated.cs │ │ ├── NumericUpDown.generated.cs │ │ ├── PageManger.generated.cs │ │ ├── Panel.generated.cs │ │ ├── Path.generated.cs │ │ ├── Picture.generated.cs │ │ ├── PieChart.generated.cs │ │ ├── Polygon.generated.cs │ │ ├── Polyline.generated.cs │ │ ├── ProgressBar.generated.cs │ │ ├── RadioButton.generated.cs │ │ ├── Rectangle.generated.cs │ │ ├── RepeatButton.generated.cs │ │ ├── ResponsivePanel.generated.cs │ │ ├── SVG.generated.cs │ │ ├── ScrollBar.generated.cs │ │ ├── ScrollViewer.generated.cs │ │ ├── Separator.generated.cs │ │ ├── Slider.generated.cs │ │ ├── StackPanel.generated.cs │ │ ├── Switch.generated.cs │ │ ├── TabControl.generated.cs │ │ ├── TextBlock.generated.cs │ │ ├── TextBox.generated.cs │ │ ├── Thumb.generated.cs │ │ ├── TimePicker.generated.cs │ │ ├── ToggleButton.generated.cs │ │ ├── Track.generated.cs │ │ ├── TreeView.generated.cs │ │ ├── UIElement.generated.cs │ │ ├── Viewbox.generated.cs │ │ ├── WindowFrame.generated.cs │ │ └── WrapPanel.generated.cs ├── Core │ ├── AttributesBuilder.cs │ ├── ElementHandlerFactory.cs │ ├── ElementHandlerFactoryContext.cs │ ├── ElementHandlerRegistry.cs │ ├── ElementManager.cs │ ├── ElementManagerOfElementType.cs │ ├── IElementHandler.cs │ ├── IHandleChildContentText.cs │ ├── INonChildContainerElement.cs │ ├── NativeComponentAdapter.cs │ ├── NativeComponentRenderer.cs │ ├── NativeControlComponentBase.cs │ ├── ServiceCollectionAdditionalServicesExtensions.cs │ └── TextSpanContainer.cs ├── CpfDispatcher.cs ├── CpfElementManager.cs ├── CpfExtensions.cs ├── CpfHost.cs ├── CpfRenderer.cs ├── ElementHandler.cs └── ICpfElementHandler.cs ├── CPF.Skia ├── CPF.Skia.csproj ├── Extension.cs ├── GlContexts │ ├── Cgl │ │ ├── CGLError.cs │ │ ├── CGLOpenGLProfile.cs │ │ ├── CGLPixelFormatAttribute.cs │ │ ├── Cgl.cs │ │ └── CglContext.cs │ ├── GlContext.cs │ ├── Glx │ │ ├── Glx.cs │ │ ├── GlxContext.cs │ │ ├── XVisualClass.cs │ │ ├── XVisualInfo.cs │ │ └── Xlib.cs │ └── Wgl │ │ ├── Gdi32.cs │ │ ├── Kernel32.cs │ │ ├── PIXELFORMATDESCRIPTOR.cs │ │ ├── RECT.cs │ │ ├── User32.cs │ │ ├── WNDCLASS.cs │ │ ├── Wgl.cs │ │ ├── WglContext.cs │ │ └── WindowStyles.cs ├── GlView.cs ├── SkiaBitmap.cs ├── SkiaBitmapLock.cs ├── SkiaDrawingContext.cs ├── SkiaDrawingFactory.cs ├── SkiaFont.cs ├── SkiaImage.cs ├── SkiaPath.cs ├── SkiaPathGeometry.cs ├── SkiaPdf.cs ├── SkiaSharp.LICENSE.md ├── ThreeDEffect.cs ├── UnmanagedMethods.cs └── skia.LICENSE.md ├── CPF.Toolkit.Demo ├── CPF.Toolkit.Demo.csproj ├── MainView.cs ├── MainViewModel.cs ├── Program.cs └── Stylesheet1.css ├── CPF.Toolkit ├── CPF.Toolkit.csproj ├── DialogService.cs ├── DialogView.cs ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── ICloseable.cs ├── ILoaded.cs ├── Images │ ├── ask.png │ ├── error.png │ ├── sucess.png │ └── warn.png ├── ViewBehavior.cs └── ViewModelBase.cs ├── CPF.Windows ├── CPF.Windows.csproj ├── ClipboardFormats.cs ├── ClipboardImpl.cs ├── ComWrapper │ ├── CpfComWrappers.cs │ ├── IDataObjectProxy.cs │ ├── IDataObjectWrapper.cs │ ├── IDropSourceProxy.cs │ ├── IDropSourceWrapper.cs │ ├── IDropTargetProxy.cs │ ├── IDropTargetWrapper.cs │ ├── IEnumFORMATETCProxy.cs │ ├── IEnumFORMATETCWrapper.cs │ ├── IFileDialogProxy.cs │ ├── IFileDialogWrapper.cs │ ├── IFileOpenDialogWrapper.cs │ ├── IShellItemArrayWrapper.cs │ ├── IShellItemProxy.cs │ ├── IShellItemWrapper.cs │ ├── IStreamProxy.cs │ └── IStreamWrapper.cs ├── CommandMessage.cs ├── CreateParams.cs ├── DataObject.cs ├── GDIPlus │ ├── Extension.cs │ ├── GDIPlusBitmap.cs │ ├── GDIPlusBitmapLock.cs │ ├── GDIPlusDrawingContext.cs │ ├── GDIPlusDrawingFactory.cs │ ├── GDIPlusImage.cs │ ├── GDIPlusPath.cs │ └── GDIPlusPathGeometry.cs ├── GPStream.cs ├── Json │ ├── Attribute │ │ ├── AliasAttribute.cs │ │ ├── IgnoreAttribute.cs │ │ ├── IgnoreDefaultValueAttribute.cs │ │ ├── JsonDeserializeCtorAttribute.cs │ │ ├── JsonOnlyIncludeAttribute.cs │ │ ├── JsonOrderAttribute.cs │ │ └── ValueFormatAttribute.cs │ ├── Exception │ │ ├── JsonDeserializationTypeResolutionException.cs │ │ ├── JsonNoSupportedDeserializeTypeException.cs │ │ └── JsonWrongCharacterException.cs │ ├── Formatter │ │ ├── Deserializer │ │ │ ├── Default │ │ │ │ ├── BaseType.cs │ │ │ │ ├── DateTime.cs │ │ │ │ ├── Primitive.cs │ │ │ │ ├── SpecialConditions.cs │ │ │ │ ├── SpecialType.cs │ │ │ │ └── TimeSpan.cs │ │ │ ├── DefaultJsonResolve.cs │ │ │ ├── DeserializeObjectJump.cs │ │ │ ├── Expression │ │ │ │ ├── ArrayBuild.cs │ │ │ │ ├── BuildFactory.cs │ │ │ │ ├── BuildTypeEnum.cs │ │ │ │ ├── CollectionBuild.cs │ │ │ │ ├── CtorInjectBuild.cs │ │ │ │ ├── DictionaryBuild.cs │ │ │ │ ├── DynamicBuild.cs │ │ │ │ ├── ExpressionMembers.cs │ │ │ │ ├── KeyValueObjectBuild.cs │ │ │ │ ├── KeyValuePairBuild.cs │ │ │ │ ├── LazyBuild.cs │ │ │ │ ├── MultiArrayBuild.cs │ │ │ │ └── WrongGenericKeyBuild.cs │ │ │ ├── ExpressionJsonResolve.cs │ │ │ ├── JArray.cs │ │ │ ├── JObject.cs │ │ │ ├── JsonReader.cs │ │ │ ├── JsonResolveBase.cs │ │ │ ├── Options │ │ │ │ ├── GlobalValueFormatDelegate.cs │ │ │ │ ├── JsonDeserializeHandler.cs │ │ │ │ └── JsonDeserializeOption.cs │ │ │ ├── ResolveFind.cs │ │ │ └── ResolveProvider.cs │ │ ├── Internal │ │ │ ├── BootTable.cs │ │ │ ├── BootTableTypeEnum.cs │ │ │ ├── CharHelper.cs │ │ │ ├── CharTries.cs │ │ │ ├── DeserializeBootTable.cs │ │ │ ├── ExpressionHelper.cs │ │ │ ├── ExpressionTypeAttribute.cs │ │ │ ├── FuncLableAttribute.cs │ │ │ ├── FuncType.cs │ │ │ ├── GuidStruct.cs │ │ │ ├── InterfaceImplementation.cs │ │ │ ├── JsonCharacterReadStateEnum.cs │ │ │ ├── MemberExtension.cs │ │ │ ├── MethodInfoOrder.cs │ │ │ ├── RemoveWriterHelper.cs │ │ │ ├── SerializerBootTable.cs │ │ │ ├── StreamOperate.cs │ │ │ └── TypeUtils.cs │ │ └── Serializer │ │ │ ├── Default │ │ │ ├── BaseType.cs │ │ │ ├── Primitive.cs │ │ │ ├── SpecialConditions.cs │ │ │ └── SpecialType.cs │ │ │ ├── DefaultJsonFormatter.cs │ │ │ ├── Expression │ │ │ ├── BuildFactory.cs │ │ │ ├── BuildTypeEnum.cs │ │ │ ├── ExpressionMembers.cs │ │ │ ├── IDictionaryGenericBuild.cs │ │ │ ├── IEnumerableGenericBuild.cs │ │ │ ├── IListGenericBuild.cs │ │ │ ├── KeyValueObjectBuild.cs │ │ │ ├── KeyValuePairBuild.cs │ │ │ ├── LazyBuild.cs │ │ │ ├── NullableBuild.cs │ │ │ └── WrongGenericKeyBuild.cs │ │ │ ├── ExpressionJsonFormatter.cs │ │ │ ├── FormatterFind.cs │ │ │ ├── FormattingProvider.cs │ │ │ ├── JsonFormatterBase.cs │ │ │ ├── Option │ │ │ ├── DatetimeFormatEnum.cs │ │ │ ├── GlobalValueFormatDelegate.cs │ │ │ ├── JsonRefernceHandlingEnum.cs │ │ │ ├── JsonSerializerHandler.cs │ │ │ ├── JsonSerializerOption.cs │ │ │ └── TimespanFormatEnum.cs │ │ │ └── SerializerObjectJump.cs │ └── JsonSerializer.cs ├── KeyInterop.cs ├── Message.cs ├── MicroCom │ ├── IMicroComExceptionCallback.cs │ ├── IMicroComShadowContainer.cs │ ├── IUnknown.cs │ ├── LocalInterop.cs │ ├── MicroComProxyBase.cs │ ├── MicroComRuntime.cs │ ├── MicroComShadow.cs │ └── MicroComVtblBase.cs ├── NativeHost.cs ├── NativeWindow.cs ├── NotifyIcon.cs ├── OleDataObject.cs ├── OleDragSource.cs ├── OleDropTarget.cs ├── OpenGL │ ├── OpenGLEnumerations.cs │ ├── OpenGl.cs │ ├── PIXELFORMATDESCRIPTOR.cs │ ├── Wgl.cs │ └── WglContext.cs ├── ScreenImpl.cs ├── UnmanagedMethods.cs ├── WindowImpl.cs ├── WindowsPlatform.cs └── WindowsSynchronizationContext.cs ├── CPF ├── Animation │ ├── AnimateMode.cs │ ├── AnimatedTypeHelpers.cs │ ├── BackEase.cs │ ├── BounceEase.cs │ ├── CircleEase.cs │ ├── CubicEase.cs │ ├── ElasticEase.cs │ ├── ExponentialEase.cs │ ├── IEase.cs │ ├── IKeyFrame.cs │ ├── KeyFrame.cs │ ├── PowerEase.cs │ ├── QuadraticEase.cs │ ├── QuinticEase.cs │ ├── SineEase.cs │ ├── Storyboard.cs │ ├── Timeline.cs │ └── WinAccurateTimer.cs ├── AttachedExtenstions.cs ├── AttachedProperties.cs ├── Behavior.cs ├── Binding.cs ├── BindingAttr.cs ├── BindingDescribe.cs ├── Bindings.cs ├── CPF.csproj ├── CPFPropertyChangedEventArgs.cs ├── CacheMode.cs ├── Charts │ ├── Chart.cs │ ├── ChartBarData.cs │ ├── ChartLineData.cs │ ├── IChartData.cs │ ├── PieChart.cs │ ├── PieChartData.cs │ └── SerieItem.cs ├── ClassDiagram1.cd ├── Classes.cs ├── Collection.cs ├── CommandParameter.cs ├── Commands.cs ├── ComputedAttribute.cs ├── ContentElement.cs ├── Controls │ ├── Border.cs │ ├── Button.cs │ ├── ButtonBase.cs │ ├── Calendar.cs │ ├── CalendarButton.cs │ ├── CalendarDayButton.cs │ ├── CheckBox.cs │ ├── CodeTextBox │ │ ├── CodeStyle.cs │ │ ├── CodeTextBox.cs │ │ ├── CodeTextView.cs │ │ └── LineNumber.cs │ ├── CodeTextBox1 │ │ ├── CodeTextBox.cs │ │ ├── Extensions.cs │ │ ├── LineControl.cs │ │ ├── LineStruct.cs │ │ └── TextBoxViewEx.cs │ ├── ColumnDefinition.cs │ ├── ComboBox.cs │ ├── ContentControl.cs │ ├── ContentTemplate.cs │ ├── ContextMenu.cs │ ├── Control.cs │ ├── CornerRadius.cs │ ├── DataGrid │ │ ├── DataGrid.cs │ │ ├── DataGridCell.cs │ │ ├── DataGridCellInfo.cs │ │ ├── DataGridCellTemplate.cs │ │ ├── DataGridCellTextEditTemplate.cs │ │ ├── DataGridCheckBoxColumn.cs │ │ ├── DataGridColumn.cs │ │ ├── DataGridColumnTemplate.cs │ │ ├── DataGridComboBoxColumn.cs │ │ ├── DataGridLength.cs │ │ ├── DataGridRow.cs │ │ ├── DataGridScrollViewer.cs │ │ ├── DataGridTemplateColumn.cs │ │ └── DataGridTextColumn.cs │ ├── DatePicker.cs │ ├── Decorator.cs │ ├── DefinitionBase.cs │ ├── Dock.cs │ ├── DockPanel.cs │ ├── DocumentBlock.cs │ ├── Expander.cs │ ├── Grid.cs │ ├── GridLength.cs │ ├── GridSplitter.cs │ ├── IHeadered.cs │ ├── IScrollInfo.cs │ ├── ITextBoxView.cs │ ├── ItemCollection.cs │ ├── ItemsControl.cs │ ├── KeywordsStyle.cs │ ├── Label.cs │ ├── LayerDialog.cs │ ├── ListBox.cs │ ├── ListBoxItem.cs │ ├── LoadingBox.cs │ ├── MenuItem.cs │ ├── MessageBox.cs │ ├── MultiSelector.cs │ ├── NativeElement.cs │ ├── NotifyIcon.cs │ ├── NumericUpDown.cs │ ├── PageManger.cs │ ├── Panel.cs │ ├── Picture.cs │ ├── Popup.cs │ ├── ProgressBar.cs │ ├── RadioButton.cs │ ├── RangeBase.cs │ ├── RepeatButton.cs │ ├── ResponsivePanel.cs │ ├── RowDefinition.cs │ ├── ScrollBar.cs │ ├── ScrollContentPresenter.cs │ ├── ScrollViewer.cs │ ├── SelectionChangedEventArgs.cs │ ├── SelectionItem.cs │ ├── SelectionMode.cs │ ├── Separator.cs │ ├── Slider.cs │ ├── StackPanel.cs │ ├── Switch.cs │ ├── SystemButton.cs │ ├── SystemDialog.cs │ ├── TabControl.cs │ ├── TabItem.cs │ ├── TextBlock.cs │ ├── TextBox.cs │ ├── TextBoxView.cs │ ├── Thumb.cs │ ├── TickBar.cs │ ├── TimePicker.cs │ ├── ToggleButton.cs │ ├── Track.cs │ ├── TreeView.cs │ ├── TreeViewContentTemplate.cs │ ├── TreeViewItem.cs │ ├── View.cs │ ├── ViewBox.cs │ ├── VirtualizationMode.cs │ ├── VirtualizationPresenter.cs │ ├── Window.cs │ ├── WindowFrame.cs │ ├── WindowState.cs │ ├── WrapPanel - 副本.cs │ └── WrapPanel.cs ├── CpfObject.cs ├── Cursor.cs ├── Design │ ├── CommandMessage.cs │ ├── DesignLoadStyle.cs │ ├── DesignPlatform.cs │ ├── DesignSynchronizationContext.cs │ ├── DesignWindow.cs │ ├── FileBrowserAttribute.cs │ ├── ISerializerCode.cs │ └── NamedPipe.cs ├── Documents │ ├── Block.cs │ ├── Document.cs │ ├── DocumentChar.cs │ ├── DocumentStyle.cs │ ├── FlowDirection.cs │ ├── ICanSelectElement.cs │ ├── IDocumentContainer.cs │ ├── IDocumentElement.cs │ ├── IDocumentStyle.cs │ ├── IFlowElement.cs │ ├── InlineBlock.cs │ ├── InlineUIContainer.cs │ └── UTF32Text.cs ├── DoubleUtil.cs ├── Drawing │ ├── AntialiasMode.cs │ ├── Bitmap.cs │ ├── BitmapLock.cs │ ├── Brush.cs │ ├── Color.cs │ ├── ColorConverter.cs │ ├── Colors.cs │ ├── DrawingContext.cs │ ├── DrawingFactory.cs │ ├── Font.cs │ ├── FormattedText.cs │ ├── Geometry.cs │ ├── GradientStop.cs │ ├── IBitmapImpl.cs │ ├── IBitmapLockImpl.cs │ ├── IGeometryImpl.cs │ ├── IImage.cs │ ├── IImageImpl.cs │ ├── IPathImpl.cs │ ├── IRenderTarget.cs │ ├── Image.cs │ ├── ImageFormat.cs │ ├── LinearGradientBrush.cs │ ├── Matrix - 复制.cs │ ├── Matrix.cs │ ├── MatrixConverter.cs │ ├── Media3D │ │ ├── M3DUtil.cs │ │ ├── Matrix3D.cs │ │ ├── Point3D.cs │ │ ├── Quaternion.cs │ │ ├── RayHitTestParameters.cs │ │ ├── Rect3D.cs │ │ ├── Size3D.cs │ │ └── Vector3D.cs │ ├── PathGeometry.cs │ ├── Point.cs │ ├── PointConverter.cs │ ├── RadialGradientBrush.cs │ ├── Rect.cs │ ├── Size.cs │ ├── SizeConverter.cs │ ├── SolidColorBrush.cs │ ├── Stroke.cs │ ├── TextAlignment.cs │ ├── TextDecoration.cs │ ├── TextureBrush.cs │ └── Vector.cs ├── Effects │ ├── BlurEffect.cs │ ├── Effect.cs │ ├── EffectGroup.cs │ ├── GrayScaleEffect.cs │ ├── MosaicEffect.cs │ ├── OpacityEffect.cs │ ├── OpacityMaskEffect.cs │ ├── PiecesEffect.cs │ ├── ReliefEffect.cs │ └── StackBlur.cs ├── EventObserver.cs ├── FloatField.cs ├── FloatUtil.cs ├── HybridDictionary.cs ├── IEditor.cs ├── Input │ ├── Clipboard.cs │ ├── DragDrop.cs │ ├── DragDropDevice.cs │ ├── DragEventArgs.cs │ ├── GotFocusEventArgs.cs │ ├── IClipboard.cs │ ├── IDataObject.cs │ ├── InputDevice.cs │ ├── InputEventArgs.cs │ ├── InputManager.cs │ ├── KeyEventArgs.cs │ ├── KeyGesture.cs │ ├── KeyboardDevice.cs │ ├── Keys.cs │ ├── ManipulationDelta.cs │ ├── MouseButtonEventArgs.cs │ ├── MouseButtonState.cs │ ├── MouseDevice.cs │ ├── MouseEventArgs.cs │ ├── MouseWheelEventArgs.cs │ ├── NavigationMethod.cs │ ├── NotifyIconMouseEventArgs.cs │ ├── PlatformHotkey.cs │ ├── TextInputEventArgs.cs │ ├── TouchDevice.cs │ └── TouchEventArgs.cs ├── Json │ ├── Formatter.cs │ ├── Getters.cs │ ├── JSerializer.cs │ ├── JsonParser.cs │ ├── JsonSerializer.cs │ ├── Reflection.cs │ └── SafeDictionary.cs ├── LayoutManager.cs ├── LinearGradientFill.cs ├── Net4 │ ├── CallerMember.cs │ ├── EventHandler.cs │ └── WeakReference.cs ├── ObjInfo.cs ├── ObjectExtenstions.cs ├── Obx.cs ├── OpenGL │ ├── GlConsts.cs │ ├── GlImportAttribute.cs │ ├── IGlContext.cs │ └── OpenGlRenderTarget.cs ├── OptionalParameter.cs ├── PixelPoint.cs ├── PixelRect.cs ├── PixelSize.cs ├── Platform │ ├── Application.cs │ ├── HDCRenderTarget.cs │ ├── IApp.cs │ ├── INativeImpl.cs │ ├── INotifyIconImpl.cs │ ├── IPlatformDispatcher.cs │ ├── IPopupImpl.cs │ ├── IScreenImpl.cs │ ├── ITopLevel.cs │ ├── IViewImpl.cs │ ├── IWindowImpl.cs │ ├── RuntimePlatform.cs │ ├── RuntimePlatformInfo.cs │ ├── Screen.cs │ └── Utf8Buffer.cs ├── PointField.cs ├── RadialGradientFill.cs ├── Reflection │ ├── Accessor.cs │ ├── ConvertItem.cs │ ├── EmitConvertMap.cs │ ├── EmitHelper.cs │ ├── FastReflectionCache.cs │ ├── FastReflectionExtensions.cs │ ├── SearchNode.cs │ └── SearchResult.cs ├── Relation.cs ├── RoutedEventArgs.cs ├── Shapes │ ├── Ellipse.cs │ ├── Line.cs │ ├── Path.cs │ ├── Polygon.cs │ ├── Polyline.cs │ ├── Rectangle.cs │ └── Shape.cs ├── SizeField.cs ├── SolidColorFill.cs ├── Styling │ ├── Enumerations.cs │ ├── Extensions │ │ ├── CharacterExtensions.cs │ │ └── StringExtensions.cs │ ├── FunctionBuffer.cs │ ├── HtmlEncoding.cs │ ├── ICssRules.cs │ ├── ICssSelector.cs │ ├── IStyleDeclaration.cs │ ├── ISupportsMedia.cs │ ├── IToString.cs │ ├── Lexer.cs │ ├── MediaTypeList.cs │ ├── Parser.Blocks.cs │ ├── Parser.cs │ ├── ResourceManager.cs │ ├── Rules │ │ ├── AggregateRule.cs │ │ ├── CharacterSetRule.cs │ │ ├── ConditionalRule.cs │ │ ├── DocumentRule.cs │ │ ├── FontFaceRule.cs │ │ ├── GenericRule.cs │ │ ├── IRuleContainer.cs │ │ ├── ImportRule.cs │ │ ├── KeyframeRule.cs │ │ ├── KeyframesRule.cs │ │ ├── MediaRule.cs │ │ ├── NamespaceRule.cs │ │ ├── PageRule.cs │ │ ├── RuleSet.cs │ │ ├── StyleDeclaration.cs │ │ ├── StyleRule.cs │ │ └── SupportsRule.cs │ ├── Selector │ │ ├── AggregateSelectorList.cs │ │ ├── BaseSelector.cs │ │ ├── CombinatorSelector.cs │ │ ├── ComplexSelector.cs │ │ ├── FirstChildSelector.cs │ │ ├── LastChildSelector.cs │ │ ├── MultipleSelectorList.cs │ │ ├── NthChildSelector.cs │ │ ├── NthFirstChildSelector.cs │ │ ├── NthLastChildSelector.cs │ │ ├── NthLastOfTypeSelector.cs │ │ ├── NthOfTypeSelector.cs │ │ ├── Selector.cs │ │ ├── SelectorFactory.cs │ │ ├── SelectorList.cs │ │ └── SimpleSelector.cs │ ├── Specification.cs │ ├── Style.cs │ ├── StyleSheet.cs │ ├── Styles.cs │ ├── StylesheetParseError.cs │ ├── StylesheetReader.cs │ ├── TextBlocks │ │ ├── Block.cs │ │ ├── BracketBlock.cs │ │ ├── CharacterBlock.cs │ │ ├── CommentBlock.cs │ │ ├── DelimiterBlock.cs │ │ ├── MatchBlock.cs │ │ ├── NumericBlock.cs │ │ ├── PipeBlock.cs │ │ ├── RangeBlock.cs │ │ ├── SpecialCharacter.cs │ │ ├── StringBlock.cs │ │ ├── SymbolBlock.cs │ │ └── UnitBlock.cs │ ├── Trigger.cs │ └── Values │ │ ├── Comma.cs │ │ ├── EqualSign.cs │ │ ├── GenericFunction.cs │ │ ├── HtmlColor.cs │ │ ├── InheritTerm.cs │ │ ├── PrimitiveTerm.cs │ │ ├── Property.cs │ │ ├── Term.cs │ │ ├── TermList.cs │ │ └── Whitespace.cs ├── Svg │ ├── ISvgShape.cs │ ├── PaintServer.cs │ ├── PathShape.cs │ ├── SVG.cs │ ├── SVGImage.cs │ ├── SVGReader.cs │ ├── SVGTags.cs │ ├── ShapeUtil.cs │ ├── Shapes.cs │ ├── Stroke.cs │ ├── SvgFill.cs │ ├── Text.cs │ ├── TextRender.cs │ └── TextStyle.cs ├── TextureFill.cs ├── Thickness.cs ├── ThicknessField.cs ├── Threading │ ├── Dispatcher.cs │ ├── DispatcherTimer.cs │ ├── IDispatcher.cs │ └── IDispatcherTimer.cs ├── Transform │ ├── GeneralTransform.cs │ ├── MatrixTransform.cs │ ├── RotateTransform.cs │ ├── ScaleTransform.cs │ ├── SkewTransform.cs │ ├── Transform.cs │ ├── TransformCollection.cs │ ├── TransformConverter.cs │ ├── TransformGroup.cs │ └── TranslateTransform.cs ├── TrieTree.cs ├── Triggers.cs ├── UIElement.cs ├── UIElementAddedEventArgs.cs ├── UIElementCollection.cs ├── UIElementRemovedEventArgs.cs ├── UIElementTemplate.cs ├── ViewFill.cs ├── Visibility.cs ├── VisibleUIElement.cs ├── Visual.cs ├── VisualFill.cs ├── WeakEventHandler.cs ├── WeakEventHandlerList.cs ├── error.png ├── loading.gif └── 日志.txt ├── ClassLibrary1 ├── Class1.cs ├── ClassLibrary1.csproj ├── ListBoxTemplate.cs ├── MainView.cs ├── OpenFileDialogView.cs ├── Stylesheet1.css ├── Window1.cs └── icon.png ├── ConsoleApp1.sln ├── ConsoleApp1 ├── 3DEffect.cs ├── App.config ├── Base │ ├── BaseWindow.cs │ ├── ControlBoxComparer.cs │ └── PolylineBuilder.cs ├── BrowseFileWindow.cs ├── BrowserFile.css ├── CellTemplate.cs ├── Class2.cs ├── ColumnTemplate.cs ├── Component1.cs ├── ConsoleApp1.csproj ├── DataGridRowTemplate.cs ├── DataGridViewModel.cs ├── DataGridWindow.cs ├── DialogView.cs ├── DragListBox.cs ├── DriveTemplate.cs ├── EasingSharp │ ├── Easing.cs │ ├── EasingActions.cs │ └── EasingTypes.cs ├── EditComboBox.cs ├── FileTemplate.cs ├── GLView.cs ├── HotReload.cs ├── IPlugin.cs ├── Icons │ ├── Drive.png │ ├── directory.png │ └── file.png ├── InvokeST │ ├── Accessor.cs │ ├── AccessorHelper.cs │ ├── AccessorHelperTests.cs │ ├── AccessorTests.cs │ ├── ConvertMap │ │ ├── ConvertItem.cs │ │ ├── EmitConvertMap.cs │ │ ├── SearchNode.cs │ │ └── SearchResult.cs │ ├── EmitHelper.cs │ ├── InvokeHandlerHelperTests.cs │ ├── InvokeHelper.cs │ └── TestClassA.cs ├── ItemData.cs ├── ListBoxItem1.cs ├── ListBoxItemTemplate.cs ├── ListBoxTemplate.cs ├── MainModel.cs ├── MainView.cs ├── Model.cs ├── NodeData.cs ├── OpenGLWindow.cs ├── OpenGlTest.cs ├── Page1.cs ├── PanMengZhengDao.ttf ├── Program.cs ├── Resources │ ├── 1.gif │ ├── arrow.png │ ├── icon.png │ ├── loading.gif │ └── 主页.png ├── SDL.cs ├── SqliteDataAdapter.cs ├── Stylesheet.css ├── Stylesheet1.css ├── Stylesheet2.css ├── Stylesheet3.css ├── TabItemTemplate.cs ├── Template.cs ├── TestMenuItem.cs ├── TestTabItem.cs ├── TestView.cs ├── TestWindow.cs ├── TextFile1.cpfss ├── TreeViewItemContentTemplate.cs ├── TreeViewItemTemplate.cs ├── TreeViewNavItem.cs ├── Tween.cs ├── VideoPlayTest.cs ├── View │ └── Window1.cs ├── Window1 (2).cs ├── Window1.cs ├── Window2.cs ├── Window3.cs ├── Window4.cs ├── Window5.cs ├── Window6.cs ├── Window7.cs ├── Window8.cs ├── icon.png ├── more-with-basis.svg ├── msyh.ttc ├── msyhbd.ttc ├── msyhl.ttc ├── rd.xml ├── svg1.svg ├── test.cs ├── test.svg ├── test2.svg ├── testApend.css └── 汉仪清庭-55简.ttf ├── CpfRazorSample ├── Component1.razor ├── ComponentWrapperGenerator │ ├── CpfComponentWrapperGenerator.cs │ ├── GeneratorSettings.cs │ └── UsingStatement.cs ├── CpfRazorSample.csproj ├── Program.cs ├── Stylesheet1.css ├── Test.razor ├── Window1.cs └── _Imports.razor ├── LICENSE ├── Other ├── 1image.png ├── 2image.png ├── 3image.png ├── 4image.png ├── Rider │ ├── CPFApplication1 │ │ ├── .template.config │ │ │ └── template.json │ │ ├── CPFApplication1.csproj │ │ ├── Program.cs │ │ ├── Stylesheet1.css │ │ └── Window1.cs │ └── 项目模板使用方法.png ├── image.png ├── weixin.png ├── yunchaobi.gif └── zhifubao.png └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/.gitignore -------------------------------------------------------------------------------- /AndroidTest/AndroidTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/AndroidTest/AndroidTest.csproj -------------------------------------------------------------------------------- /AndroidTest/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/AndroidTest/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /AndroidTest/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/AndroidTest/Class1.cs -------------------------------------------------------------------------------- /AndroidTest/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/AndroidTest/MainActivity.cs -------------------------------------------------------------------------------- /AndroidTest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/AndroidTest/packages.config -------------------------------------------------------------------------------- /CPF.Android/AndroidPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Android/AndroidPlatform.cs -------------------------------------------------------------------------------- /CPF.Android/AndroidView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Android/AndroidView.cs -------------------------------------------------------------------------------- /CPF.Android/CPF.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Android/CPF.Android.csproj -------------------------------------------------------------------------------- /CPF.Android/CPF.Android.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Android/CPF.Android.nuspec -------------------------------------------------------------------------------- /CPF.Android/ClipboardImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Android/ClipboardImpl.cs -------------------------------------------------------------------------------- /CPF.Android/CpfActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Android/CpfActivity.cs -------------------------------------------------------------------------------- /CPF.Android/CpfAndroidApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Android/CpfAndroidApp.cs -------------------------------------------------------------------------------- /CPF.Android/CpfView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Android/CpfView.cs -------------------------------------------------------------------------------- /CPF.Android/EglContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Android/EglContext.cs -------------------------------------------------------------------------------- /CPF.Android/FileSaveFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Android/FileSaveFragment.cs -------------------------------------------------------------------------------- /CPF.Android/GeneralView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Android/GeneralView.cs -------------------------------------------------------------------------------- /CPF.Android/ISurfaceView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Android/ISurfaceView.cs -------------------------------------------------------------------------------- /CPF.Android/InputConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Android/InputConnection.cs -------------------------------------------------------------------------------- /CPF.Android/ListBoxTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Android/ListBoxTemplate.cs -------------------------------------------------------------------------------- /CPF.Android/NativeImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Android/NativeImpl.cs -------------------------------------------------------------------------------- /CPF.Android/OpenFileDialogView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Android/OpenFileDialogView.cs -------------------------------------------------------------------------------- /CPF.Android/OpenGLView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Android/OpenGLView.cs -------------------------------------------------------------------------------- /CPF.Android/PopupImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Android/PopupImpl.cs -------------------------------------------------------------------------------- /CPF.Android/SoftKeyboardListner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Android/SoftKeyboardListner.cs -------------------------------------------------------------------------------- /CPF.Android/WindowImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Android/WindowImpl.cs -------------------------------------------------------------------------------- /CPF.Android/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Android/license.txt -------------------------------------------------------------------------------- /CPF.Android/nuget程序包打包说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Android/nuget程序包打包说明.txt -------------------------------------------------------------------------------- /CPF.Linux/CPF.Linux.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Linux/CPF.Linux.csproj -------------------------------------------------------------------------------- /CPF.Linux/DataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Linux/DataObject.cs -------------------------------------------------------------------------------- /CPF.Linux/Glib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Linux/Glib.cs -------------------------------------------------------------------------------- /CPF.Linux/LinuxPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Linux/LinuxPlatform.cs -------------------------------------------------------------------------------- /CPF.Linux/NativeHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Linux/NativeHost.cs -------------------------------------------------------------------------------- /CPF.Linux/NotifyIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Linux/NotifyIcon.cs -------------------------------------------------------------------------------- /CPF.Linux/OpenGL/Glx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Linux/OpenGL/Glx.cs -------------------------------------------------------------------------------- /CPF.Linux/OpenGL/GlxContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Linux/OpenGL/GlxContext.cs -------------------------------------------------------------------------------- /CPF.Linux/ScreenImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Linux/ScreenImpl.cs -------------------------------------------------------------------------------- /CPF.Linux/X11Atoms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Linux/X11Atoms.cs -------------------------------------------------------------------------------- /CPF.Linux/X11Clipboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Linux/X11Clipboard.cs -------------------------------------------------------------------------------- /CPF.Linux/X11Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Linux/X11Enums.cs -------------------------------------------------------------------------------- /CPF.Linux/X11Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Linux/X11Info.cs -------------------------------------------------------------------------------- /CPF.Linux/X11Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Linux/X11Key.cs -------------------------------------------------------------------------------- /CPF.Linux/X11Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Linux/X11Structs.cs -------------------------------------------------------------------------------- /CPF.Linux/X11Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Linux/X11Window.cs -------------------------------------------------------------------------------- /CPF.Linux/XError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Linux/XError.cs -------------------------------------------------------------------------------- /CPF.Linux/XI2Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Linux/XI2Manager.cs -------------------------------------------------------------------------------- /CPF.Linux/XIStructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Linux/XIStructs.cs -------------------------------------------------------------------------------- /CPF.Linux/XLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Linux/XLib.cs -------------------------------------------------------------------------------- /CPF.Mac/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/AppDelegate.cs -------------------------------------------------------------------------------- /CPF.Mac/CPF.Mac.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/CPF.Mac.csproj -------------------------------------------------------------------------------- /CPF.Mac/CPFNSApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/CPFNSApplication.cs -------------------------------------------------------------------------------- /CPF.Mac/ClipboardImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/ClipboardImpl.cs -------------------------------------------------------------------------------- /CPF.Mac/DataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/DataObject.cs -------------------------------------------------------------------------------- /CPF.Mac/Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Key.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSActionCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSActionCell.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSAnimation.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSAppearance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSAppearance.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSApplication.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSBackingStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSBackingStore.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSBezelStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSBezelStyle.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSBezierPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSBezierPath.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSBitmapFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSBitmapFormat.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSBorderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSBorderType.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSBox.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSBoxType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSBoxType.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSButton.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSButtonCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSButtonCell.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSButtonType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSButtonType.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSCIImageRep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSCIImageRep.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSCell.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSCellHit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSCellHit.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSCellMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSCellMask.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSCellType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSCellType.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSClipView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSClipView.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSColor.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSColorList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSColorList.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSColorSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSColorSpace.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSColorWell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSColorWell.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSComposite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSComposite.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSControl.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSControlSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSControlSize.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSControlText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSControlText.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSControlTint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSControlTint.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSController.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSCursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSCursor.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSDockTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSDockTile.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSDraggingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSDraggingInfo.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSDraggingItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSDraggingItem.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSDrawer.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSDrawerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSDrawerState.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSEPSImageRep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSEPSImageRep.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSEdgeInsets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSEdgeInsets.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSEvent.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSEventMask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSEventMask.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSEventPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSEventPhase.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSEventSubtype.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSEventSubtype.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSEventType.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSFont.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSFontManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSFontManager.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSFontPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSFontPanel.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSForm.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSFormCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSFormCell.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSGLFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSGLFormat.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSGradient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSGradient.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSGradientType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSGradientType.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSGraphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSGraphics.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSHelpManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSHelpManager.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSImage.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSImageCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSImageCell.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSImageName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSImageName.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSImageRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSImageRect.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSImageRep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSImageRep.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSImageScale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSImageScale.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSImageScaling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSImageScaling.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSImageView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSImageView.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSKey.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSLineCapStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSLineCapStyle.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSMatrix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSMatrix.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSMatrixMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSMatrixMode.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSMenu.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSMenuDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSMenuDelegate.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSMenuItem.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSMenuItemCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSMenuItemCell.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSMenuProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSMenuProperty.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSMenuView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSMenuView.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSNib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSNib.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSOpenGLView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSOpenGLView.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSOpenPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSOpenPanel.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSOutlineView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSOutlineView.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSPageLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSPageLayout.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSPanel.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSPasteboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSPasteboard.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSPathCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSPathCell.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSPathControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSPathControl.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSPathStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSPathStyle.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSPopover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSPopover.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSPrintInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSPrintInfo.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSPrintPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSPrintPanel.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSPrinter.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSRectEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSRectEdge.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSResponder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSResponder.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSRuleEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSRuleEditor.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSRulerMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSRulerMarker.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSRulerView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSRulerView.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSRunResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSRunResponse.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSSavePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSSavePanel.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSScreen.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSScrollView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSScrollView.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSScroller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSScroller.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSScrollerPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSScrollerPart.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSShadow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSShadow.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSSound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSSound.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSStatusBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSStatusBar.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSStatusItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSStatusItem.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSStepper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSStepper.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSSurfaceOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSSurfaceOrder.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTabState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTabState.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTabView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTabView.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTabViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTabViewItem.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTabViewType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTabViewType.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTableColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTableColumn.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTableReorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTableReorder.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTableRowView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTableRowView.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTableView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTableView.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSText.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTextBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTextBlock.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTextDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTextDelegate.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTextField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTextField.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTextList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTextList.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTextMovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTextMovement.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTextStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTextStorage.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTextTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTextTab.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTextTabType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTextTabType.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTextTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTextTable.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTextView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTextView.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTextViewLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTextViewLink.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTokenField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTokenField.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTokenStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTokenStyle.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSToolbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSToolbar.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSToolbarItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSToolbarItem.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTouch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTouch.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTouchPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTouchPhase.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTrackingArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTrackingArea.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTreeNode.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSType.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSTypesetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSTypesetter.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSView.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSWindingRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSWindingRule.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSWindow.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSWindowButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSWindowButton.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSWindowClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSWindowClient.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSWindowDepth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSWindowDepth.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSWindowFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSWindowFrame.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSWindowLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSWindowLevel.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSWindowMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSWindowMenu.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSWindowResize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSWindowResize.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSWindowSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSWindowSize.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSWindowStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSWindowStyle.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/NSWorkspace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/NSWorkspace.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/AppKit/OneShotTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/AppKit/OneShotTracker.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Constants.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreAnimation/CALayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreAnimation/CALayer.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreData/NSDeleteRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreData/NSDeleteRule.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreFoundation/CFData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreFoundation/CFData.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreFoundation/CFType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreFoundation/CFType.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreFoundation/CFUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreFoundation/CFUrl.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreFoundation/Tuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreFoundation/Tuple.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreGraphics/CGColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreGraphics/CGColor.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreGraphics/CGFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreGraphics/CGFont.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreGraphics/CGImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreGraphics/CGImage.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreGraphics/CGLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreGraphics/CGLayer.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreGraphics/CGPDFBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreGraphics/CGPDFBox.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreGraphics/CGPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreGraphics/CGPath.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreGraphics/CGPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreGraphics/CGPoint.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreGraphics/CGRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreGraphics/CGRect.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreGraphics/CGSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreGraphics/CGSize.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreImage/CIBloom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreImage/CIBloom.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreImage/CIColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreImage/CIColor.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreImage/CIColorCube.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreImage/CIColorCube.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreImage/CIColorMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreImage/CIColorMap.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreImage/CIContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreImage/CIContext.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreImage/CICrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreImage/CICrop.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreImage/CIDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreImage/CIDetector.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreImage/CIDotScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreImage/CIDotScreen.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreImage/CIFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreImage/CIFeature.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreImage/CIFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreImage/CIFilter.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreImage/CIFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreImage/CIFormat.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreImage/CIGloom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreImage/CIGloom.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreImage/CIHueAdjust.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreImage/CIHueAdjust.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreImage/CIImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreImage/CIImage.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreImage/CIKernel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreImage/CIKernel.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreImage/CIPixellate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreImage/CIPixellate.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreImage/CIPlugIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreImage/CIPlugIn.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreImage/CISampler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreImage/CISampler.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreImage/CISepiaTone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreImage/CISepiaTone.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreImage/CIToneCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreImage/CIToneCurve.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreImage/CIVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreImage/CIVector.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreImage/CIVibrance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreImage/CIVibrance.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreImage/CIWrapMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreImage/CIWrapMode.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreLocation/CLError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreLocation/CLError.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreMedia/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreMedia/.DS_Store -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreMedia/CMTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreMedia/CMTime.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreMedia/CMTimeRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreMedia/CMTimeRange.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreServices/CFHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreServices/CFHost.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreText/Adapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreText/Adapter.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreText/CTFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreText/CTFont.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreText/CTFontFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreText/CTFontFormat.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreText/CTFontTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreText/CTFontTable.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreText/CTFontTraits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreText/CTFontTraits.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreText/CTFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreText/CTFrame.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreText/CTGlyphInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreText/CTGlyphInfo.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreText/CTLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreText/CTLine.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreText/CTRun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreText/CTRun.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreText/CTRunStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreText/CTRunStatus.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreText/CTTextTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreText/CTTextTab.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreText/CTTypesetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreText/CTTypesetter.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreVideo/CVBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreVideo/CVBuffer.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreVideo/CVTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreVideo/CVTime.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/CoreVideo/CoreVideo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/CoreVideo/CoreVideo.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/AEEventID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/AEEventID.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSAction.cs: -------------------------------------------------------------------------------- 1 | namespace CPF.Mac.Foundation 2 | { 3 | public delegate void NSAction(); 4 | } 5 | -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSArray.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSBundle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSBundle.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSCache.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSCalendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSCalendar.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSCoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSCoder.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSData.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSDate.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSDecimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSDecimal.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSError.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSFileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSFileType.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSIndexSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSIndexSet.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSLocale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSLocale.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSMachPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSMachPort.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSNull.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSNumber.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSObject.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSPipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSPipe.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSPort.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSRange.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSRunLoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSRunLoop.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSSet.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSStream.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSString.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSTask.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSThread.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSTimeZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSTimeZone.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSTimer.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSUrl.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSUrlCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSUrlCache.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSUrlError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSUrlError.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSUuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSUuid.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Foundation/NSValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Foundation/NSValue.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/HttpVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/HttpVersion.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Libraries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Libraries.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/ObjCRuntime/Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/ObjCRuntime/Class.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/ObjCRuntime/Dlfcn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/ObjCRuntime/Dlfcn.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/ObjCRuntime/Messaging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/ObjCRuntime/Messaging.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/ObjCRuntime/Runtime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/ObjCRuntime/Runtime.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/ObjCRuntime/Selector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/ObjCRuntime/Selector.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/OpenGL/CGLContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/OpenGL/CGLContext.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/OpenGL/CGLErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/OpenGL/CGLErrorCode.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/OpenGL/CGLPixelFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/OpenGL/CGLPixelFormat.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/QTKit/QTTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/QTKit/QTTime.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/QTKit/QTTimeRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/QTKit/QTTimeRange.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/QTKit/TimeFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/QTKit/TimeFlags.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Security/ClassKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Security/ClassKeys.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Security/KeyTypeKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Security/KeyTypeKeys.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Security/SecClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Security/SecClass.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Security/SecIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Security/SecIdentity.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Security/SecItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Security/SecItem.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Security/SecKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Security/SecKey.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Security/SecKeyChain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Security/SecKeyChain.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Security/SecKeyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Security/SecKeyClass.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Security/SecKeyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Security/SecKeyType.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Security/SecKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Security/SecKind.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Security/SecPadding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Security/SecPadding.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Security/SecPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Security/SecPolicy.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Security/SecProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Security/SecProtocol.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Security/SecRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Security/SecRecord.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Security/SecTrust.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Security/SecTrust.cs -------------------------------------------------------------------------------- /CPF.Mac/Mac/Trampolines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/Mac/Trampolines.cs -------------------------------------------------------------------------------- /CPF.Mac/MacPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/MacPlatform.cs -------------------------------------------------------------------------------- /CPF.Mac/NativeHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/NativeHost.cs -------------------------------------------------------------------------------- /CPF.Mac/NotifyIconImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/NotifyIconImpl.cs -------------------------------------------------------------------------------- /CPF.Mac/OpenGL/CGLError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/OpenGL/CGLError.cs -------------------------------------------------------------------------------- /CPF.Mac/OpenGL/CGLOpenGLProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/OpenGL/CGLOpenGLProfile.cs -------------------------------------------------------------------------------- /CPF.Mac/OpenGL/Cgl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/OpenGL/Cgl.cs -------------------------------------------------------------------------------- /CPF.Mac/OpenGL/CglContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/OpenGL/CglContext.cs -------------------------------------------------------------------------------- /CPF.Mac/OpenGLView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/OpenGLView.cs -------------------------------------------------------------------------------- /CPF.Mac/ScreenImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/ScreenImpl.cs -------------------------------------------------------------------------------- /CPF.Mac/WindowImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/WindowImpl.cs -------------------------------------------------------------------------------- /CPF.Mac/_Xamarin-macios.LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/_Xamarin-macios.LICENSE.md -------------------------------------------------------------------------------- /CPF.Mac/resizeeastwest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/resizeeastwest.png -------------------------------------------------------------------------------- /CPF.Mac/resizenortheastsouthwest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/resizenortheastsouthwest.png -------------------------------------------------------------------------------- /CPF.Mac/resizenorthsouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/resizenorthsouth.png -------------------------------------------------------------------------------- /CPF.Mac/resizenorthwestsoutheast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Mac/resizenorthwestsoutheast.png -------------------------------------------------------------------------------- /CPF.Razor/CPF.Razor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Razor/CPF.Razor.csproj -------------------------------------------------------------------------------- /CPF.Razor/Controls/Button.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Razor/Controls/Button.cs -------------------------------------------------------------------------------- /CPF.Razor/Controls/CheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Razor/Controls/CheckBox.cs -------------------------------------------------------------------------------- /CPF.Razor/Controls/DockPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Razor/Controls/DockPanel.cs -------------------------------------------------------------------------------- /CPF.Razor/Controls/Element.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Razor/Controls/Element.cs -------------------------------------------------------------------------------- /CPF.Razor/Controls/Grid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Razor/Controls/Grid.cs -------------------------------------------------------------------------------- /CPF.Razor/Controls/Panel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Razor/Controls/Panel.cs -------------------------------------------------------------------------------- /CPF.Razor/Controls/StackPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Razor/Controls/StackPanel.cs -------------------------------------------------------------------------------- /CPF.Razor/Controls/TestElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Razor/Controls/TestElement.cs -------------------------------------------------------------------------------- /CPF.Razor/Controls/WindowFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Razor/Controls/WindowFrame.cs -------------------------------------------------------------------------------- /CPF.Razor/Controls/WrapPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Razor/Controls/WrapPanel.cs -------------------------------------------------------------------------------- /CPF.Razor/Core/AttributesBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Razor/Core/AttributesBuilder.cs -------------------------------------------------------------------------------- /CPF.Razor/Core/ElementManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Razor/Core/ElementManager.cs -------------------------------------------------------------------------------- /CPF.Razor/Core/IElementHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Razor/Core/IElementHandler.cs -------------------------------------------------------------------------------- /CPF.Razor/Core/TextSpanContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Razor/Core/TextSpanContainer.cs -------------------------------------------------------------------------------- /CPF.Razor/CpfDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Razor/CpfDispatcher.cs -------------------------------------------------------------------------------- /CPF.Razor/CpfElementManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Razor/CpfElementManager.cs -------------------------------------------------------------------------------- /CPF.Razor/CpfExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Razor/CpfExtensions.cs -------------------------------------------------------------------------------- /CPF.Razor/CpfHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Razor/CpfHost.cs -------------------------------------------------------------------------------- /CPF.Razor/CpfRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Razor/CpfRenderer.cs -------------------------------------------------------------------------------- /CPF.Razor/ElementHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Razor/ElementHandler.cs -------------------------------------------------------------------------------- /CPF.Razor/ICpfElementHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Razor/ICpfElementHandler.cs -------------------------------------------------------------------------------- /CPF.Skia/CPF.Skia.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Skia/CPF.Skia.csproj -------------------------------------------------------------------------------- /CPF.Skia/Extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Skia/Extension.cs -------------------------------------------------------------------------------- /CPF.Skia/GlContexts/Cgl/CGLError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Skia/GlContexts/Cgl/CGLError.cs -------------------------------------------------------------------------------- /CPF.Skia/GlContexts/Cgl/Cgl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Skia/GlContexts/Cgl/Cgl.cs -------------------------------------------------------------------------------- /CPF.Skia/GlContexts/GlContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Skia/GlContexts/GlContext.cs -------------------------------------------------------------------------------- /CPF.Skia/GlContexts/Glx/Glx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Skia/GlContexts/Glx/Glx.cs -------------------------------------------------------------------------------- /CPF.Skia/GlContexts/Glx/Xlib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Skia/GlContexts/Glx/Xlib.cs -------------------------------------------------------------------------------- /CPF.Skia/GlContexts/Wgl/Gdi32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Skia/GlContexts/Wgl/Gdi32.cs -------------------------------------------------------------------------------- /CPF.Skia/GlContexts/Wgl/RECT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Skia/GlContexts/Wgl/RECT.cs -------------------------------------------------------------------------------- /CPF.Skia/GlContexts/Wgl/User32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Skia/GlContexts/Wgl/User32.cs -------------------------------------------------------------------------------- /CPF.Skia/GlContexts/Wgl/Wgl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Skia/GlContexts/Wgl/Wgl.cs -------------------------------------------------------------------------------- /CPF.Skia/GlView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Skia/GlView.cs -------------------------------------------------------------------------------- /CPF.Skia/SkiaBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Skia/SkiaBitmap.cs -------------------------------------------------------------------------------- /CPF.Skia/SkiaBitmapLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Skia/SkiaBitmapLock.cs -------------------------------------------------------------------------------- /CPF.Skia/SkiaDrawingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Skia/SkiaDrawingContext.cs -------------------------------------------------------------------------------- /CPF.Skia/SkiaDrawingFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Skia/SkiaDrawingFactory.cs -------------------------------------------------------------------------------- /CPF.Skia/SkiaFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Skia/SkiaFont.cs -------------------------------------------------------------------------------- /CPF.Skia/SkiaImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Skia/SkiaImage.cs -------------------------------------------------------------------------------- /CPF.Skia/SkiaPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Skia/SkiaPath.cs -------------------------------------------------------------------------------- /CPF.Skia/SkiaPathGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Skia/SkiaPathGeometry.cs -------------------------------------------------------------------------------- /CPF.Skia/SkiaPdf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Skia/SkiaPdf.cs -------------------------------------------------------------------------------- /CPF.Skia/SkiaSharp.LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Skia/SkiaSharp.LICENSE.md -------------------------------------------------------------------------------- /CPF.Skia/ThreeDEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Skia/ThreeDEffect.cs -------------------------------------------------------------------------------- /CPF.Skia/UnmanagedMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Skia/UnmanagedMethods.cs -------------------------------------------------------------------------------- /CPF.Skia/skia.LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Skia/skia.LICENSE.md -------------------------------------------------------------------------------- /CPF.Toolkit.Demo/MainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Toolkit.Demo/MainView.cs -------------------------------------------------------------------------------- /CPF.Toolkit.Demo/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Toolkit.Demo/MainViewModel.cs -------------------------------------------------------------------------------- /CPF.Toolkit.Demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Toolkit.Demo/Program.cs -------------------------------------------------------------------------------- /CPF.Toolkit.Demo/Stylesheet1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Toolkit.Demo/Stylesheet1.css -------------------------------------------------------------------------------- /CPF.Toolkit/CPF.Toolkit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Toolkit/CPF.Toolkit.csproj -------------------------------------------------------------------------------- /CPF.Toolkit/DialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Toolkit/DialogService.cs -------------------------------------------------------------------------------- /CPF.Toolkit/DialogView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Toolkit/DialogView.cs -------------------------------------------------------------------------------- /CPF.Toolkit/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Toolkit/FodyWeavers.xml -------------------------------------------------------------------------------- /CPF.Toolkit/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Toolkit/FodyWeavers.xsd -------------------------------------------------------------------------------- /CPF.Toolkit/ICloseable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Toolkit/ICloseable.cs -------------------------------------------------------------------------------- /CPF.Toolkit/ILoaded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Toolkit/ILoaded.cs -------------------------------------------------------------------------------- /CPF.Toolkit/Images/ask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Toolkit/Images/ask.png -------------------------------------------------------------------------------- /CPF.Toolkit/Images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Toolkit/Images/error.png -------------------------------------------------------------------------------- /CPF.Toolkit/Images/sucess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Toolkit/Images/sucess.png -------------------------------------------------------------------------------- /CPF.Toolkit/Images/warn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Toolkit/Images/warn.png -------------------------------------------------------------------------------- /CPF.Toolkit/ViewBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Toolkit/ViewBehavior.cs -------------------------------------------------------------------------------- /CPF.Toolkit/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Toolkit/ViewModelBase.cs -------------------------------------------------------------------------------- /CPF.Windows/CPF.Windows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/CPF.Windows.csproj -------------------------------------------------------------------------------- /CPF.Windows/ClipboardFormats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/ClipboardFormats.cs -------------------------------------------------------------------------------- /CPF.Windows/ClipboardImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/ClipboardImpl.cs -------------------------------------------------------------------------------- /CPF.Windows/CommandMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/CommandMessage.cs -------------------------------------------------------------------------------- /CPF.Windows/CreateParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/CreateParams.cs -------------------------------------------------------------------------------- /CPF.Windows/DataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/DataObject.cs -------------------------------------------------------------------------------- /CPF.Windows/GDIPlus/Extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/GDIPlus/Extension.cs -------------------------------------------------------------------------------- /CPF.Windows/GDIPlus/GDIPlusPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/GDIPlus/GDIPlusPath.cs -------------------------------------------------------------------------------- /CPF.Windows/GPStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/GPStream.cs -------------------------------------------------------------------------------- /CPF.Windows/Json/JsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/Json/JsonSerializer.cs -------------------------------------------------------------------------------- /CPF.Windows/KeyInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/KeyInterop.cs -------------------------------------------------------------------------------- /CPF.Windows/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/Message.cs -------------------------------------------------------------------------------- /CPF.Windows/MicroCom/IUnknown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/MicroCom/IUnknown.cs -------------------------------------------------------------------------------- /CPF.Windows/NativeHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/NativeHost.cs -------------------------------------------------------------------------------- /CPF.Windows/NativeWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/NativeWindow.cs -------------------------------------------------------------------------------- /CPF.Windows/NotifyIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/NotifyIcon.cs -------------------------------------------------------------------------------- /CPF.Windows/OleDataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/OleDataObject.cs -------------------------------------------------------------------------------- /CPF.Windows/OleDragSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/OleDragSource.cs -------------------------------------------------------------------------------- /CPF.Windows/OleDropTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/OleDropTarget.cs -------------------------------------------------------------------------------- /CPF.Windows/OpenGL/OpenGl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/OpenGL/OpenGl.cs -------------------------------------------------------------------------------- /CPF.Windows/OpenGL/Wgl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/OpenGL/Wgl.cs -------------------------------------------------------------------------------- /CPF.Windows/OpenGL/WglContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/OpenGL/WglContext.cs -------------------------------------------------------------------------------- /CPF.Windows/ScreenImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/ScreenImpl.cs -------------------------------------------------------------------------------- /CPF.Windows/UnmanagedMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/UnmanagedMethods.cs -------------------------------------------------------------------------------- /CPF.Windows/WindowImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/WindowImpl.cs -------------------------------------------------------------------------------- /CPF.Windows/WindowsPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF.Windows/WindowsPlatform.cs -------------------------------------------------------------------------------- /CPF/Animation/AnimateMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Animation/AnimateMode.cs -------------------------------------------------------------------------------- /CPF/Animation/BackEase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Animation/BackEase.cs -------------------------------------------------------------------------------- /CPF/Animation/BounceEase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Animation/BounceEase.cs -------------------------------------------------------------------------------- /CPF/Animation/CircleEase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Animation/CircleEase.cs -------------------------------------------------------------------------------- /CPF/Animation/CubicEase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Animation/CubicEase.cs -------------------------------------------------------------------------------- /CPF/Animation/ElasticEase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Animation/ElasticEase.cs -------------------------------------------------------------------------------- /CPF/Animation/ExponentialEase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Animation/ExponentialEase.cs -------------------------------------------------------------------------------- /CPF/Animation/IEase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Animation/IEase.cs -------------------------------------------------------------------------------- /CPF/Animation/IKeyFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Animation/IKeyFrame.cs -------------------------------------------------------------------------------- /CPF/Animation/KeyFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Animation/KeyFrame.cs -------------------------------------------------------------------------------- /CPF/Animation/PowerEase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Animation/PowerEase.cs -------------------------------------------------------------------------------- /CPF/Animation/QuadraticEase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Animation/QuadraticEase.cs -------------------------------------------------------------------------------- /CPF/Animation/QuinticEase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Animation/QuinticEase.cs -------------------------------------------------------------------------------- /CPF/Animation/SineEase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Animation/SineEase.cs -------------------------------------------------------------------------------- /CPF/Animation/Storyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Animation/Storyboard.cs -------------------------------------------------------------------------------- /CPF/Animation/Timeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Animation/Timeline.cs -------------------------------------------------------------------------------- /CPF/Animation/WinAccurateTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Animation/WinAccurateTimer.cs -------------------------------------------------------------------------------- /CPF/AttachedExtenstions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/AttachedExtenstions.cs -------------------------------------------------------------------------------- /CPF/AttachedProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/AttachedProperties.cs -------------------------------------------------------------------------------- /CPF/Behavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Behavior.cs -------------------------------------------------------------------------------- /CPF/Binding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Binding.cs -------------------------------------------------------------------------------- /CPF/BindingAttr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/BindingAttr.cs -------------------------------------------------------------------------------- /CPF/BindingDescribe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/BindingDescribe.cs -------------------------------------------------------------------------------- /CPF/Bindings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Bindings.cs -------------------------------------------------------------------------------- /CPF/CPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/CPF.csproj -------------------------------------------------------------------------------- /CPF/CPFPropertyChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/CPFPropertyChangedEventArgs.cs -------------------------------------------------------------------------------- /CPF/CacheMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/CacheMode.cs -------------------------------------------------------------------------------- /CPF/Charts/Chart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Charts/Chart.cs -------------------------------------------------------------------------------- /CPF/Charts/ChartBarData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Charts/ChartBarData.cs -------------------------------------------------------------------------------- /CPF/Charts/ChartLineData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Charts/ChartLineData.cs -------------------------------------------------------------------------------- /CPF/Charts/IChartData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Charts/IChartData.cs -------------------------------------------------------------------------------- /CPF/Charts/PieChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Charts/PieChart.cs -------------------------------------------------------------------------------- /CPF/Charts/PieChartData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Charts/PieChartData.cs -------------------------------------------------------------------------------- /CPF/Charts/SerieItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Charts/SerieItem.cs -------------------------------------------------------------------------------- /CPF/ClassDiagram1.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/ClassDiagram1.cd -------------------------------------------------------------------------------- /CPF/Classes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Classes.cs -------------------------------------------------------------------------------- /CPF/Collection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Collection.cs -------------------------------------------------------------------------------- /CPF/CommandParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/CommandParameter.cs -------------------------------------------------------------------------------- /CPF/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Commands.cs -------------------------------------------------------------------------------- /CPF/ComputedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/ComputedAttribute.cs -------------------------------------------------------------------------------- /CPF/ContentElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/ContentElement.cs -------------------------------------------------------------------------------- /CPF/Controls/Border.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/Border.cs -------------------------------------------------------------------------------- /CPF/Controls/Button.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/Button.cs -------------------------------------------------------------------------------- /CPF/Controls/ButtonBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/ButtonBase.cs -------------------------------------------------------------------------------- /CPF/Controls/Calendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/Calendar.cs -------------------------------------------------------------------------------- /CPF/Controls/CalendarButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/CalendarButton.cs -------------------------------------------------------------------------------- /CPF/Controls/CalendarDayButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/CalendarDayButton.cs -------------------------------------------------------------------------------- /CPF/Controls/CheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/CheckBox.cs -------------------------------------------------------------------------------- /CPF/Controls/ColumnDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/ColumnDefinition.cs -------------------------------------------------------------------------------- /CPF/Controls/ComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/ComboBox.cs -------------------------------------------------------------------------------- /CPF/Controls/ContentControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/ContentControl.cs -------------------------------------------------------------------------------- /CPF/Controls/ContentTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/ContentTemplate.cs -------------------------------------------------------------------------------- /CPF/Controls/ContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/ContextMenu.cs -------------------------------------------------------------------------------- /CPF/Controls/Control.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/Control.cs -------------------------------------------------------------------------------- /CPF/Controls/CornerRadius.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/CornerRadius.cs -------------------------------------------------------------------------------- /CPF/Controls/DataGrid/DataGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/DataGrid/DataGrid.cs -------------------------------------------------------------------------------- /CPF/Controls/DatePicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/DatePicker.cs -------------------------------------------------------------------------------- /CPF/Controls/Decorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/Decorator.cs -------------------------------------------------------------------------------- /CPF/Controls/DefinitionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/DefinitionBase.cs -------------------------------------------------------------------------------- /CPF/Controls/Dock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/Dock.cs -------------------------------------------------------------------------------- /CPF/Controls/DockPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/DockPanel.cs -------------------------------------------------------------------------------- /CPF/Controls/DocumentBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/DocumentBlock.cs -------------------------------------------------------------------------------- /CPF/Controls/Expander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/Expander.cs -------------------------------------------------------------------------------- /CPF/Controls/Grid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/Grid.cs -------------------------------------------------------------------------------- /CPF/Controls/GridLength.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/GridLength.cs -------------------------------------------------------------------------------- /CPF/Controls/GridSplitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/GridSplitter.cs -------------------------------------------------------------------------------- /CPF/Controls/IHeadered.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/IHeadered.cs -------------------------------------------------------------------------------- /CPF/Controls/IScrollInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/IScrollInfo.cs -------------------------------------------------------------------------------- /CPF/Controls/ITextBoxView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/ITextBoxView.cs -------------------------------------------------------------------------------- /CPF/Controls/ItemCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/ItemCollection.cs -------------------------------------------------------------------------------- /CPF/Controls/ItemsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/ItemsControl.cs -------------------------------------------------------------------------------- /CPF/Controls/KeywordsStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/KeywordsStyle.cs -------------------------------------------------------------------------------- /CPF/Controls/Label.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/Label.cs -------------------------------------------------------------------------------- /CPF/Controls/LayerDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/LayerDialog.cs -------------------------------------------------------------------------------- /CPF/Controls/ListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/ListBox.cs -------------------------------------------------------------------------------- /CPF/Controls/ListBoxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/ListBoxItem.cs -------------------------------------------------------------------------------- /CPF/Controls/LoadingBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/LoadingBox.cs -------------------------------------------------------------------------------- /CPF/Controls/MenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/MenuItem.cs -------------------------------------------------------------------------------- /CPF/Controls/MessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/MessageBox.cs -------------------------------------------------------------------------------- /CPF/Controls/MultiSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/MultiSelector.cs -------------------------------------------------------------------------------- /CPF/Controls/NativeElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/NativeElement.cs -------------------------------------------------------------------------------- /CPF/Controls/NotifyIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/NotifyIcon.cs -------------------------------------------------------------------------------- /CPF/Controls/NumericUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/NumericUpDown.cs -------------------------------------------------------------------------------- /CPF/Controls/PageManger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/PageManger.cs -------------------------------------------------------------------------------- /CPF/Controls/Panel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/Panel.cs -------------------------------------------------------------------------------- /CPF/Controls/Picture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/Picture.cs -------------------------------------------------------------------------------- /CPF/Controls/Popup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/Popup.cs -------------------------------------------------------------------------------- /CPF/Controls/ProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/ProgressBar.cs -------------------------------------------------------------------------------- /CPF/Controls/RadioButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/RadioButton.cs -------------------------------------------------------------------------------- /CPF/Controls/RangeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/RangeBase.cs -------------------------------------------------------------------------------- /CPF/Controls/RepeatButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/RepeatButton.cs -------------------------------------------------------------------------------- /CPF/Controls/ResponsivePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/ResponsivePanel.cs -------------------------------------------------------------------------------- /CPF/Controls/RowDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/RowDefinition.cs -------------------------------------------------------------------------------- /CPF/Controls/ScrollBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/ScrollBar.cs -------------------------------------------------------------------------------- /CPF/Controls/ScrollViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/ScrollViewer.cs -------------------------------------------------------------------------------- /CPF/Controls/SelectionItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/SelectionItem.cs -------------------------------------------------------------------------------- /CPF/Controls/SelectionMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/SelectionMode.cs -------------------------------------------------------------------------------- /CPF/Controls/Separator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/Separator.cs -------------------------------------------------------------------------------- /CPF/Controls/Slider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/Slider.cs -------------------------------------------------------------------------------- /CPF/Controls/StackPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/StackPanel.cs -------------------------------------------------------------------------------- /CPF/Controls/Switch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/Switch.cs -------------------------------------------------------------------------------- /CPF/Controls/SystemButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/SystemButton.cs -------------------------------------------------------------------------------- /CPF/Controls/SystemDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/SystemDialog.cs -------------------------------------------------------------------------------- /CPF/Controls/TabControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/TabControl.cs -------------------------------------------------------------------------------- /CPF/Controls/TabItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/TabItem.cs -------------------------------------------------------------------------------- /CPF/Controls/TextBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/TextBlock.cs -------------------------------------------------------------------------------- /CPF/Controls/TextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/TextBox.cs -------------------------------------------------------------------------------- /CPF/Controls/TextBoxView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/TextBoxView.cs -------------------------------------------------------------------------------- /CPF/Controls/Thumb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/Thumb.cs -------------------------------------------------------------------------------- /CPF/Controls/TickBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/TickBar.cs -------------------------------------------------------------------------------- /CPF/Controls/TimePicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/TimePicker.cs -------------------------------------------------------------------------------- /CPF/Controls/ToggleButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/ToggleButton.cs -------------------------------------------------------------------------------- /CPF/Controls/Track.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/Track.cs -------------------------------------------------------------------------------- /CPF/Controls/TreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/TreeView.cs -------------------------------------------------------------------------------- /CPF/Controls/TreeViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/TreeViewItem.cs -------------------------------------------------------------------------------- /CPF/Controls/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/View.cs -------------------------------------------------------------------------------- /CPF/Controls/ViewBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/ViewBox.cs -------------------------------------------------------------------------------- /CPF/Controls/VirtualizationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/VirtualizationMode.cs -------------------------------------------------------------------------------- /CPF/Controls/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/Window.cs -------------------------------------------------------------------------------- /CPF/Controls/WindowFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/WindowFrame.cs -------------------------------------------------------------------------------- /CPF/Controls/WindowState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/WindowState.cs -------------------------------------------------------------------------------- /CPF/Controls/WrapPanel - 副本.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/WrapPanel - 副本.cs -------------------------------------------------------------------------------- /CPF/Controls/WrapPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Controls/WrapPanel.cs -------------------------------------------------------------------------------- /CPF/CpfObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/CpfObject.cs -------------------------------------------------------------------------------- /CPF/Cursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Cursor.cs -------------------------------------------------------------------------------- /CPF/Design/CommandMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Design/CommandMessage.cs -------------------------------------------------------------------------------- /CPF/Design/DesignLoadStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Design/DesignLoadStyle.cs -------------------------------------------------------------------------------- /CPF/Design/DesignPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Design/DesignPlatform.cs -------------------------------------------------------------------------------- /CPF/Design/DesignWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Design/DesignWindow.cs -------------------------------------------------------------------------------- /CPF/Design/FileBrowserAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Design/FileBrowserAttribute.cs -------------------------------------------------------------------------------- /CPF/Design/ISerializerCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Design/ISerializerCode.cs -------------------------------------------------------------------------------- /CPF/Design/NamedPipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Design/NamedPipe.cs -------------------------------------------------------------------------------- /CPF/Documents/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Documents/Block.cs -------------------------------------------------------------------------------- /CPF/Documents/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Documents/Document.cs -------------------------------------------------------------------------------- /CPF/Documents/DocumentChar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Documents/DocumentChar.cs -------------------------------------------------------------------------------- /CPF/Documents/DocumentStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Documents/DocumentStyle.cs -------------------------------------------------------------------------------- /CPF/Documents/FlowDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Documents/FlowDirection.cs -------------------------------------------------------------------------------- /CPF/Documents/ICanSelectElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Documents/ICanSelectElement.cs -------------------------------------------------------------------------------- /CPF/Documents/IDocumentElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Documents/IDocumentElement.cs -------------------------------------------------------------------------------- /CPF/Documents/IDocumentStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Documents/IDocumentStyle.cs -------------------------------------------------------------------------------- /CPF/Documents/IFlowElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Documents/IFlowElement.cs -------------------------------------------------------------------------------- /CPF/Documents/InlineBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Documents/InlineBlock.cs -------------------------------------------------------------------------------- /CPF/Documents/InlineUIContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Documents/InlineUIContainer.cs -------------------------------------------------------------------------------- /CPF/Documents/UTF32Text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Documents/UTF32Text.cs -------------------------------------------------------------------------------- /CPF/DoubleUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/DoubleUtil.cs -------------------------------------------------------------------------------- /CPF/Drawing/AntialiasMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/AntialiasMode.cs -------------------------------------------------------------------------------- /CPF/Drawing/Bitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/Bitmap.cs -------------------------------------------------------------------------------- /CPF/Drawing/BitmapLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/BitmapLock.cs -------------------------------------------------------------------------------- /CPF/Drawing/Brush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/Brush.cs -------------------------------------------------------------------------------- /CPF/Drawing/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/Color.cs -------------------------------------------------------------------------------- /CPF/Drawing/ColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/ColorConverter.cs -------------------------------------------------------------------------------- /CPF/Drawing/Colors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/Colors.cs -------------------------------------------------------------------------------- /CPF/Drawing/DrawingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/DrawingContext.cs -------------------------------------------------------------------------------- /CPF/Drawing/DrawingFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/DrawingFactory.cs -------------------------------------------------------------------------------- /CPF/Drawing/Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/Font.cs -------------------------------------------------------------------------------- /CPF/Drawing/FormattedText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/FormattedText.cs -------------------------------------------------------------------------------- /CPF/Drawing/Geometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/Geometry.cs -------------------------------------------------------------------------------- /CPF/Drawing/GradientStop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/GradientStop.cs -------------------------------------------------------------------------------- /CPF/Drawing/IBitmapImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/IBitmapImpl.cs -------------------------------------------------------------------------------- /CPF/Drawing/IBitmapLockImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/IBitmapLockImpl.cs -------------------------------------------------------------------------------- /CPF/Drawing/IGeometryImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/IGeometryImpl.cs -------------------------------------------------------------------------------- /CPF/Drawing/IImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/IImage.cs -------------------------------------------------------------------------------- /CPF/Drawing/IImageImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/IImageImpl.cs -------------------------------------------------------------------------------- /CPF/Drawing/IPathImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/IPathImpl.cs -------------------------------------------------------------------------------- /CPF/Drawing/IRenderTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/IRenderTarget.cs -------------------------------------------------------------------------------- /CPF/Drawing/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/Image.cs -------------------------------------------------------------------------------- /CPF/Drawing/ImageFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/ImageFormat.cs -------------------------------------------------------------------------------- /CPF/Drawing/LinearGradientBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/LinearGradientBrush.cs -------------------------------------------------------------------------------- /CPF/Drawing/Matrix - 复制.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/Matrix - 复制.cs -------------------------------------------------------------------------------- /CPF/Drawing/Matrix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/Matrix.cs -------------------------------------------------------------------------------- /CPF/Drawing/MatrixConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/MatrixConverter.cs -------------------------------------------------------------------------------- /CPF/Drawing/Media3D/M3DUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/Media3D/M3DUtil.cs -------------------------------------------------------------------------------- /CPF/Drawing/Media3D/Matrix3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/Media3D/Matrix3D.cs -------------------------------------------------------------------------------- /CPF/Drawing/Media3D/Point3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/Media3D/Point3D.cs -------------------------------------------------------------------------------- /CPF/Drawing/Media3D/Quaternion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/Media3D/Quaternion.cs -------------------------------------------------------------------------------- /CPF/Drawing/Media3D/Rect3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/Media3D/Rect3D.cs -------------------------------------------------------------------------------- /CPF/Drawing/Media3D/Size3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/Media3D/Size3D.cs -------------------------------------------------------------------------------- /CPF/Drawing/Media3D/Vector3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/Media3D/Vector3D.cs -------------------------------------------------------------------------------- /CPF/Drawing/PathGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/PathGeometry.cs -------------------------------------------------------------------------------- /CPF/Drawing/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/Point.cs -------------------------------------------------------------------------------- /CPF/Drawing/PointConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/PointConverter.cs -------------------------------------------------------------------------------- /CPF/Drawing/RadialGradientBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/RadialGradientBrush.cs -------------------------------------------------------------------------------- /CPF/Drawing/Rect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/Rect.cs -------------------------------------------------------------------------------- /CPF/Drawing/Size.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/Size.cs -------------------------------------------------------------------------------- /CPF/Drawing/SizeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/SizeConverter.cs -------------------------------------------------------------------------------- /CPF/Drawing/SolidColorBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/SolidColorBrush.cs -------------------------------------------------------------------------------- /CPF/Drawing/Stroke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/Stroke.cs -------------------------------------------------------------------------------- /CPF/Drawing/TextAlignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/TextAlignment.cs -------------------------------------------------------------------------------- /CPF/Drawing/TextDecoration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/TextDecoration.cs -------------------------------------------------------------------------------- /CPF/Drawing/TextureBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/TextureBrush.cs -------------------------------------------------------------------------------- /CPF/Drawing/Vector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Drawing/Vector.cs -------------------------------------------------------------------------------- /CPF/Effects/BlurEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Effects/BlurEffect.cs -------------------------------------------------------------------------------- /CPF/Effects/Effect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Effects/Effect.cs -------------------------------------------------------------------------------- /CPF/Effects/EffectGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Effects/EffectGroup.cs -------------------------------------------------------------------------------- /CPF/Effects/GrayScaleEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Effects/GrayScaleEffect.cs -------------------------------------------------------------------------------- /CPF/Effects/MosaicEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Effects/MosaicEffect.cs -------------------------------------------------------------------------------- /CPF/Effects/OpacityEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Effects/OpacityEffect.cs -------------------------------------------------------------------------------- /CPF/Effects/OpacityMaskEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Effects/OpacityMaskEffect.cs -------------------------------------------------------------------------------- /CPF/Effects/PiecesEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Effects/PiecesEffect.cs -------------------------------------------------------------------------------- /CPF/Effects/ReliefEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Effects/ReliefEffect.cs -------------------------------------------------------------------------------- /CPF/Effects/StackBlur.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Effects/StackBlur.cs -------------------------------------------------------------------------------- /CPF/EventObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/EventObserver.cs -------------------------------------------------------------------------------- /CPF/FloatField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/FloatField.cs -------------------------------------------------------------------------------- /CPF/FloatUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/FloatUtil.cs -------------------------------------------------------------------------------- /CPF/HybridDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/HybridDictionary.cs -------------------------------------------------------------------------------- /CPF/IEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/IEditor.cs -------------------------------------------------------------------------------- /CPF/Input/Clipboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Input/Clipboard.cs -------------------------------------------------------------------------------- /CPF/Input/DragDrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Input/DragDrop.cs -------------------------------------------------------------------------------- /CPF/Input/DragDropDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Input/DragDropDevice.cs -------------------------------------------------------------------------------- /CPF/Input/DragEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Input/DragEventArgs.cs -------------------------------------------------------------------------------- /CPF/Input/GotFocusEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Input/GotFocusEventArgs.cs -------------------------------------------------------------------------------- /CPF/Input/IClipboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Input/IClipboard.cs -------------------------------------------------------------------------------- /CPF/Input/IDataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Input/IDataObject.cs -------------------------------------------------------------------------------- /CPF/Input/InputDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Input/InputDevice.cs -------------------------------------------------------------------------------- /CPF/Input/InputEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Input/InputEventArgs.cs -------------------------------------------------------------------------------- /CPF/Input/InputManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Input/InputManager.cs -------------------------------------------------------------------------------- /CPF/Input/KeyEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Input/KeyEventArgs.cs -------------------------------------------------------------------------------- /CPF/Input/KeyGesture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Input/KeyGesture.cs -------------------------------------------------------------------------------- /CPF/Input/KeyboardDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Input/KeyboardDevice.cs -------------------------------------------------------------------------------- /CPF/Input/Keys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Input/Keys.cs -------------------------------------------------------------------------------- /CPF/Input/ManipulationDelta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Input/ManipulationDelta.cs -------------------------------------------------------------------------------- /CPF/Input/MouseButtonEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Input/MouseButtonEventArgs.cs -------------------------------------------------------------------------------- /CPF/Input/MouseButtonState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Input/MouseButtonState.cs -------------------------------------------------------------------------------- /CPF/Input/MouseDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Input/MouseDevice.cs -------------------------------------------------------------------------------- /CPF/Input/MouseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Input/MouseEventArgs.cs -------------------------------------------------------------------------------- /CPF/Input/MouseWheelEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Input/MouseWheelEventArgs.cs -------------------------------------------------------------------------------- /CPF/Input/NavigationMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Input/NavigationMethod.cs -------------------------------------------------------------------------------- /CPF/Input/PlatformHotkey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Input/PlatformHotkey.cs -------------------------------------------------------------------------------- /CPF/Input/TextInputEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Input/TextInputEventArgs.cs -------------------------------------------------------------------------------- /CPF/Input/TouchDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Input/TouchDevice.cs -------------------------------------------------------------------------------- /CPF/Input/TouchEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Input/TouchEventArgs.cs -------------------------------------------------------------------------------- /CPF/Json/Formatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Json/Formatter.cs -------------------------------------------------------------------------------- /CPF/Json/Getters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Json/Getters.cs -------------------------------------------------------------------------------- /CPF/Json/JSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Json/JSerializer.cs -------------------------------------------------------------------------------- /CPF/Json/JsonParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Json/JsonParser.cs -------------------------------------------------------------------------------- /CPF/Json/JsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Json/JsonSerializer.cs -------------------------------------------------------------------------------- /CPF/Json/Reflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Json/Reflection.cs -------------------------------------------------------------------------------- /CPF/Json/SafeDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Json/SafeDictionary.cs -------------------------------------------------------------------------------- /CPF/LayoutManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/LayoutManager.cs -------------------------------------------------------------------------------- /CPF/LinearGradientFill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/LinearGradientFill.cs -------------------------------------------------------------------------------- /CPF/Net4/CallerMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Net4/CallerMember.cs -------------------------------------------------------------------------------- /CPF/Net4/EventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Net4/EventHandler.cs -------------------------------------------------------------------------------- /CPF/Net4/WeakReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Net4/WeakReference.cs -------------------------------------------------------------------------------- /CPF/ObjInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/ObjInfo.cs -------------------------------------------------------------------------------- /CPF/ObjectExtenstions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/ObjectExtenstions.cs -------------------------------------------------------------------------------- /CPF/Obx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Obx.cs -------------------------------------------------------------------------------- /CPF/OpenGL/GlConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/OpenGL/GlConsts.cs -------------------------------------------------------------------------------- /CPF/OpenGL/GlImportAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/OpenGL/GlImportAttribute.cs -------------------------------------------------------------------------------- /CPF/OpenGL/IGlContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/OpenGL/IGlContext.cs -------------------------------------------------------------------------------- /CPF/OpenGL/OpenGlRenderTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/OpenGL/OpenGlRenderTarget.cs -------------------------------------------------------------------------------- /CPF/OptionalParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/OptionalParameter.cs -------------------------------------------------------------------------------- /CPF/PixelPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/PixelPoint.cs -------------------------------------------------------------------------------- /CPF/PixelRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/PixelRect.cs -------------------------------------------------------------------------------- /CPF/PixelSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/PixelSize.cs -------------------------------------------------------------------------------- /CPF/Platform/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Platform/Application.cs -------------------------------------------------------------------------------- /CPF/Platform/HDCRenderTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Platform/HDCRenderTarget.cs -------------------------------------------------------------------------------- /CPF/Platform/IApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Platform/IApp.cs -------------------------------------------------------------------------------- /CPF/Platform/INativeImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Platform/INativeImpl.cs -------------------------------------------------------------------------------- /CPF/Platform/INotifyIconImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Platform/INotifyIconImpl.cs -------------------------------------------------------------------------------- /CPF/Platform/IPopupImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Platform/IPopupImpl.cs -------------------------------------------------------------------------------- /CPF/Platform/IScreenImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Platform/IScreenImpl.cs -------------------------------------------------------------------------------- /CPF/Platform/ITopLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Platform/ITopLevel.cs -------------------------------------------------------------------------------- /CPF/Platform/IViewImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Platform/IViewImpl.cs -------------------------------------------------------------------------------- /CPF/Platform/IWindowImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Platform/IWindowImpl.cs -------------------------------------------------------------------------------- /CPF/Platform/RuntimePlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Platform/RuntimePlatform.cs -------------------------------------------------------------------------------- /CPF/Platform/Screen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Platform/Screen.cs -------------------------------------------------------------------------------- /CPF/Platform/Utf8Buffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Platform/Utf8Buffer.cs -------------------------------------------------------------------------------- /CPF/PointField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/PointField.cs -------------------------------------------------------------------------------- /CPF/RadialGradientFill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/RadialGradientFill.cs -------------------------------------------------------------------------------- /CPF/Reflection/Accessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Reflection/Accessor.cs -------------------------------------------------------------------------------- /CPF/Reflection/ConvertItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Reflection/ConvertItem.cs -------------------------------------------------------------------------------- /CPF/Reflection/EmitConvertMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Reflection/EmitConvertMap.cs -------------------------------------------------------------------------------- /CPF/Reflection/EmitHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Reflection/EmitHelper.cs -------------------------------------------------------------------------------- /CPF/Reflection/SearchNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Reflection/SearchNode.cs -------------------------------------------------------------------------------- /CPF/Reflection/SearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Reflection/SearchResult.cs -------------------------------------------------------------------------------- /CPF/Relation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Relation.cs -------------------------------------------------------------------------------- /CPF/RoutedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/RoutedEventArgs.cs -------------------------------------------------------------------------------- /CPF/Shapes/Ellipse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Shapes/Ellipse.cs -------------------------------------------------------------------------------- /CPF/Shapes/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Shapes/Line.cs -------------------------------------------------------------------------------- /CPF/Shapes/Path.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Shapes/Path.cs -------------------------------------------------------------------------------- /CPF/Shapes/Polygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Shapes/Polygon.cs -------------------------------------------------------------------------------- /CPF/Shapes/Polyline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Shapes/Polyline.cs -------------------------------------------------------------------------------- /CPF/Shapes/Rectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Shapes/Rectangle.cs -------------------------------------------------------------------------------- /CPF/Shapes/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Shapes/Shape.cs -------------------------------------------------------------------------------- /CPF/SizeField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/SizeField.cs -------------------------------------------------------------------------------- /CPF/SolidColorFill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/SolidColorFill.cs -------------------------------------------------------------------------------- /CPF/Styling/Enumerations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Enumerations.cs -------------------------------------------------------------------------------- /CPF/Styling/FunctionBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/FunctionBuffer.cs -------------------------------------------------------------------------------- /CPF/Styling/HtmlEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/HtmlEncoding.cs -------------------------------------------------------------------------------- /CPF/Styling/ICssRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/ICssRules.cs -------------------------------------------------------------------------------- /CPF/Styling/ICssSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/ICssSelector.cs -------------------------------------------------------------------------------- /CPF/Styling/IStyleDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/IStyleDeclaration.cs -------------------------------------------------------------------------------- /CPF/Styling/ISupportsMedia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/ISupportsMedia.cs -------------------------------------------------------------------------------- /CPF/Styling/IToString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/IToString.cs -------------------------------------------------------------------------------- /CPF/Styling/Lexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Lexer.cs -------------------------------------------------------------------------------- /CPF/Styling/MediaTypeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/MediaTypeList.cs -------------------------------------------------------------------------------- /CPF/Styling/Parser.Blocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Parser.Blocks.cs -------------------------------------------------------------------------------- /CPF/Styling/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Parser.cs -------------------------------------------------------------------------------- /CPF/Styling/ResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/ResourceManager.cs -------------------------------------------------------------------------------- /CPF/Styling/Rules/AggregateRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Rules/AggregateRule.cs -------------------------------------------------------------------------------- /CPF/Styling/Rules/DocumentRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Rules/DocumentRule.cs -------------------------------------------------------------------------------- /CPF/Styling/Rules/FontFaceRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Rules/FontFaceRule.cs -------------------------------------------------------------------------------- /CPF/Styling/Rules/GenericRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Rules/GenericRule.cs -------------------------------------------------------------------------------- /CPF/Styling/Rules/ImportRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Rules/ImportRule.cs -------------------------------------------------------------------------------- /CPF/Styling/Rules/KeyframeRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Rules/KeyframeRule.cs -------------------------------------------------------------------------------- /CPF/Styling/Rules/KeyframesRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Rules/KeyframesRule.cs -------------------------------------------------------------------------------- /CPF/Styling/Rules/MediaRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Rules/MediaRule.cs -------------------------------------------------------------------------------- /CPF/Styling/Rules/NamespaceRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Rules/NamespaceRule.cs -------------------------------------------------------------------------------- /CPF/Styling/Rules/PageRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Rules/PageRule.cs -------------------------------------------------------------------------------- /CPF/Styling/Rules/RuleSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Rules/RuleSet.cs -------------------------------------------------------------------------------- /CPF/Styling/Rules/StyleRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Rules/StyleRule.cs -------------------------------------------------------------------------------- /CPF/Styling/Rules/SupportsRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Rules/SupportsRule.cs -------------------------------------------------------------------------------- /CPF/Styling/Selector/Selector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Selector/Selector.cs -------------------------------------------------------------------------------- /CPF/Styling/Specification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Specification.cs -------------------------------------------------------------------------------- /CPF/Styling/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Style.cs -------------------------------------------------------------------------------- /CPF/Styling/StyleSheet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/StyleSheet.cs -------------------------------------------------------------------------------- /CPF/Styling/Styles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Styles.cs -------------------------------------------------------------------------------- /CPF/Styling/StylesheetReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/StylesheetReader.cs -------------------------------------------------------------------------------- /CPF/Styling/TextBlocks/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/TextBlocks/Block.cs -------------------------------------------------------------------------------- /CPF/Styling/Trigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Trigger.cs -------------------------------------------------------------------------------- /CPF/Styling/Values/Comma.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Values/Comma.cs -------------------------------------------------------------------------------- /CPF/Styling/Values/EqualSign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Values/EqualSign.cs -------------------------------------------------------------------------------- /CPF/Styling/Values/HtmlColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Values/HtmlColor.cs -------------------------------------------------------------------------------- /CPF/Styling/Values/InheritTerm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Values/InheritTerm.cs -------------------------------------------------------------------------------- /CPF/Styling/Values/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Values/Property.cs -------------------------------------------------------------------------------- /CPF/Styling/Values/Term.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Values/Term.cs -------------------------------------------------------------------------------- /CPF/Styling/Values/TermList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Values/TermList.cs -------------------------------------------------------------------------------- /CPF/Styling/Values/Whitespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Styling/Values/Whitespace.cs -------------------------------------------------------------------------------- /CPF/Svg/ISvgShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Svg/ISvgShape.cs -------------------------------------------------------------------------------- /CPF/Svg/PaintServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Svg/PaintServer.cs -------------------------------------------------------------------------------- /CPF/Svg/PathShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Svg/PathShape.cs -------------------------------------------------------------------------------- /CPF/Svg/SVG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Svg/SVG.cs -------------------------------------------------------------------------------- /CPF/Svg/SVGImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Svg/SVGImage.cs -------------------------------------------------------------------------------- /CPF/Svg/SVGReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Svg/SVGReader.cs -------------------------------------------------------------------------------- /CPF/Svg/SVGTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Svg/SVGTags.cs -------------------------------------------------------------------------------- /CPF/Svg/ShapeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Svg/ShapeUtil.cs -------------------------------------------------------------------------------- /CPF/Svg/Shapes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Svg/Shapes.cs -------------------------------------------------------------------------------- /CPF/Svg/Stroke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Svg/Stroke.cs -------------------------------------------------------------------------------- /CPF/Svg/SvgFill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Svg/SvgFill.cs -------------------------------------------------------------------------------- /CPF/Svg/Text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Svg/Text.cs -------------------------------------------------------------------------------- /CPF/Svg/TextRender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Svg/TextRender.cs -------------------------------------------------------------------------------- /CPF/Svg/TextStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Svg/TextStyle.cs -------------------------------------------------------------------------------- /CPF/TextureFill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/TextureFill.cs -------------------------------------------------------------------------------- /CPF/Thickness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Thickness.cs -------------------------------------------------------------------------------- /CPF/ThicknessField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/ThicknessField.cs -------------------------------------------------------------------------------- /CPF/Threading/Dispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Threading/Dispatcher.cs -------------------------------------------------------------------------------- /CPF/Threading/DispatcherTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Threading/DispatcherTimer.cs -------------------------------------------------------------------------------- /CPF/Threading/IDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Threading/IDispatcher.cs -------------------------------------------------------------------------------- /CPF/Threading/IDispatcherTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Threading/IDispatcherTimer.cs -------------------------------------------------------------------------------- /CPF/Transform/GeneralTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Transform/GeneralTransform.cs -------------------------------------------------------------------------------- /CPF/Transform/MatrixTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Transform/MatrixTransform.cs -------------------------------------------------------------------------------- /CPF/Transform/RotateTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Transform/RotateTransform.cs -------------------------------------------------------------------------------- /CPF/Transform/ScaleTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Transform/ScaleTransform.cs -------------------------------------------------------------------------------- /CPF/Transform/SkewTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Transform/SkewTransform.cs -------------------------------------------------------------------------------- /CPF/Transform/Transform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Transform/Transform.cs -------------------------------------------------------------------------------- /CPF/Transform/TransformGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Transform/TransformGroup.cs -------------------------------------------------------------------------------- /CPF/TrieTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/TrieTree.cs -------------------------------------------------------------------------------- /CPF/Triggers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Triggers.cs -------------------------------------------------------------------------------- /CPF/UIElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/UIElement.cs -------------------------------------------------------------------------------- /CPF/UIElementAddedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/UIElementAddedEventArgs.cs -------------------------------------------------------------------------------- /CPF/UIElementCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/UIElementCollection.cs -------------------------------------------------------------------------------- /CPF/UIElementRemovedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/UIElementRemovedEventArgs.cs -------------------------------------------------------------------------------- /CPF/UIElementTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/UIElementTemplate.cs -------------------------------------------------------------------------------- /CPF/ViewFill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/ViewFill.cs -------------------------------------------------------------------------------- /CPF/Visibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Visibility.cs -------------------------------------------------------------------------------- /CPF/VisibleUIElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/VisibleUIElement.cs -------------------------------------------------------------------------------- /CPF/Visual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/Visual.cs -------------------------------------------------------------------------------- /CPF/VisualFill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/VisualFill.cs -------------------------------------------------------------------------------- /CPF/WeakEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/WeakEventHandler.cs -------------------------------------------------------------------------------- /CPF/WeakEventHandlerList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/WeakEventHandlerList.cs -------------------------------------------------------------------------------- /CPF/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/error.png -------------------------------------------------------------------------------- /CPF/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/loading.gif -------------------------------------------------------------------------------- /CPF/日志.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CPF/日志.txt -------------------------------------------------------------------------------- /ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /ClassLibrary1/ClassLibrary1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ClassLibrary1/ClassLibrary1.csproj -------------------------------------------------------------------------------- /ClassLibrary1/ListBoxTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ClassLibrary1/ListBoxTemplate.cs -------------------------------------------------------------------------------- /ClassLibrary1/MainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ClassLibrary1/MainView.cs -------------------------------------------------------------------------------- /ClassLibrary1/Stylesheet1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ClassLibrary1/Stylesheet1.css -------------------------------------------------------------------------------- /ClassLibrary1/Window1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ClassLibrary1/Window1.cs -------------------------------------------------------------------------------- /ClassLibrary1/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ClassLibrary1/icon.png -------------------------------------------------------------------------------- /ConsoleApp1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1.sln -------------------------------------------------------------------------------- /ConsoleApp1/3DEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/3DEffect.cs -------------------------------------------------------------------------------- /ConsoleApp1/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/App.config -------------------------------------------------------------------------------- /ConsoleApp1/Base/BaseWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Base/BaseWindow.cs -------------------------------------------------------------------------------- /ConsoleApp1/BrowseFileWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/BrowseFileWindow.cs -------------------------------------------------------------------------------- /ConsoleApp1/BrowserFile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/BrowserFile.css -------------------------------------------------------------------------------- /ConsoleApp1/CellTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/CellTemplate.cs -------------------------------------------------------------------------------- /ConsoleApp1/Class2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Class2.cs -------------------------------------------------------------------------------- /ConsoleApp1/ColumnTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/ColumnTemplate.cs -------------------------------------------------------------------------------- /ConsoleApp1/Component1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Component1.cs -------------------------------------------------------------------------------- /ConsoleApp1/ConsoleApp1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/ConsoleApp1.csproj -------------------------------------------------------------------------------- /ConsoleApp1/DataGridRowTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/DataGridRowTemplate.cs -------------------------------------------------------------------------------- /ConsoleApp1/DataGridViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/DataGridViewModel.cs -------------------------------------------------------------------------------- /ConsoleApp1/DataGridWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/DataGridWindow.cs -------------------------------------------------------------------------------- /ConsoleApp1/DialogView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/DialogView.cs -------------------------------------------------------------------------------- /ConsoleApp1/DragListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/DragListBox.cs -------------------------------------------------------------------------------- /ConsoleApp1/DriveTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/DriveTemplate.cs -------------------------------------------------------------------------------- /ConsoleApp1/EasingSharp/Easing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/EasingSharp/Easing.cs -------------------------------------------------------------------------------- /ConsoleApp1/EditComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/EditComboBox.cs -------------------------------------------------------------------------------- /ConsoleApp1/FileTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/FileTemplate.cs -------------------------------------------------------------------------------- /ConsoleApp1/GLView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/GLView.cs -------------------------------------------------------------------------------- /ConsoleApp1/HotReload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/HotReload.cs -------------------------------------------------------------------------------- /ConsoleApp1/IPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/IPlugin.cs -------------------------------------------------------------------------------- /ConsoleApp1/Icons/Drive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Icons/Drive.png -------------------------------------------------------------------------------- /ConsoleApp1/Icons/directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Icons/directory.png -------------------------------------------------------------------------------- /ConsoleApp1/Icons/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Icons/file.png -------------------------------------------------------------------------------- /ConsoleApp1/InvokeST/Accessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/InvokeST/Accessor.cs -------------------------------------------------------------------------------- /ConsoleApp1/InvokeST/EmitHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/InvokeST/EmitHelper.cs -------------------------------------------------------------------------------- /ConsoleApp1/InvokeST/TestClassA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/InvokeST/TestClassA.cs -------------------------------------------------------------------------------- /ConsoleApp1/ItemData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/ItemData.cs -------------------------------------------------------------------------------- /ConsoleApp1/ListBoxItem1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/ListBoxItem1.cs -------------------------------------------------------------------------------- /ConsoleApp1/ListBoxItemTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/ListBoxItemTemplate.cs -------------------------------------------------------------------------------- /ConsoleApp1/ListBoxTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/ListBoxTemplate.cs -------------------------------------------------------------------------------- /ConsoleApp1/MainModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/MainModel.cs -------------------------------------------------------------------------------- /ConsoleApp1/MainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/MainView.cs -------------------------------------------------------------------------------- /ConsoleApp1/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Model.cs -------------------------------------------------------------------------------- /ConsoleApp1/NodeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/NodeData.cs -------------------------------------------------------------------------------- /ConsoleApp1/OpenGLWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/OpenGLWindow.cs -------------------------------------------------------------------------------- /ConsoleApp1/OpenGlTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/OpenGlTest.cs -------------------------------------------------------------------------------- /ConsoleApp1/Page1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Page1.cs -------------------------------------------------------------------------------- /ConsoleApp1/PanMengZhengDao.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/PanMengZhengDao.ttf -------------------------------------------------------------------------------- /ConsoleApp1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Program.cs -------------------------------------------------------------------------------- /ConsoleApp1/Resources/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Resources/1.gif -------------------------------------------------------------------------------- /ConsoleApp1/Resources/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Resources/arrow.png -------------------------------------------------------------------------------- /ConsoleApp1/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Resources/icon.png -------------------------------------------------------------------------------- /ConsoleApp1/Resources/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Resources/loading.gif -------------------------------------------------------------------------------- /ConsoleApp1/Resources/主页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Resources/主页.png -------------------------------------------------------------------------------- /ConsoleApp1/SDL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/SDL.cs -------------------------------------------------------------------------------- /ConsoleApp1/SqliteDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/SqliteDataAdapter.cs -------------------------------------------------------------------------------- /ConsoleApp1/Stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Stylesheet.css -------------------------------------------------------------------------------- /ConsoleApp1/Stylesheet1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Stylesheet1.css -------------------------------------------------------------------------------- /ConsoleApp1/Stylesheet2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Stylesheet2.css -------------------------------------------------------------------------------- /ConsoleApp1/Stylesheet3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Stylesheet3.css -------------------------------------------------------------------------------- /ConsoleApp1/TabItemTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/TabItemTemplate.cs -------------------------------------------------------------------------------- /ConsoleApp1/Template.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Template.cs -------------------------------------------------------------------------------- /ConsoleApp1/TestMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/TestMenuItem.cs -------------------------------------------------------------------------------- /ConsoleApp1/TestTabItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/TestTabItem.cs -------------------------------------------------------------------------------- /ConsoleApp1/TestView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/TestView.cs -------------------------------------------------------------------------------- /ConsoleApp1/TestWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/TestWindow.cs -------------------------------------------------------------------------------- /ConsoleApp1/TextFile1.cpfss: -------------------------------------------------------------------------------- 1 | Button{ 2 | Width:auto; 3 | Test:asda; 4 | } 5 | TextBox{ 6 | 7 | } -------------------------------------------------------------------------------- /ConsoleApp1/TreeViewNavItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/TreeViewNavItem.cs -------------------------------------------------------------------------------- /ConsoleApp1/Tween.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Tween.cs -------------------------------------------------------------------------------- /ConsoleApp1/VideoPlayTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/VideoPlayTest.cs -------------------------------------------------------------------------------- /ConsoleApp1/View/Window1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/View/Window1.cs -------------------------------------------------------------------------------- /ConsoleApp1/Window1 (2).cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Window1 (2).cs -------------------------------------------------------------------------------- /ConsoleApp1/Window1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Window1.cs -------------------------------------------------------------------------------- /ConsoleApp1/Window2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Window2.cs -------------------------------------------------------------------------------- /ConsoleApp1/Window3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Window3.cs -------------------------------------------------------------------------------- /ConsoleApp1/Window4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Window4.cs -------------------------------------------------------------------------------- /ConsoleApp1/Window5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Window5.cs -------------------------------------------------------------------------------- /ConsoleApp1/Window6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Window6.cs -------------------------------------------------------------------------------- /ConsoleApp1/Window7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Window7.cs -------------------------------------------------------------------------------- /ConsoleApp1/Window8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/Window8.cs -------------------------------------------------------------------------------- /ConsoleApp1/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/icon.png -------------------------------------------------------------------------------- /ConsoleApp1/more-with-basis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/more-with-basis.svg -------------------------------------------------------------------------------- /ConsoleApp1/msyh.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/msyh.ttc -------------------------------------------------------------------------------- /ConsoleApp1/msyhbd.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/msyhbd.ttc -------------------------------------------------------------------------------- /ConsoleApp1/msyhl.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/msyhl.ttc -------------------------------------------------------------------------------- /ConsoleApp1/rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/rd.xml -------------------------------------------------------------------------------- /ConsoleApp1/svg1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/svg1.svg -------------------------------------------------------------------------------- /ConsoleApp1/test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/test.cs -------------------------------------------------------------------------------- /ConsoleApp1/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/test.svg -------------------------------------------------------------------------------- /ConsoleApp1/test2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/test2.svg -------------------------------------------------------------------------------- /ConsoleApp1/testApend.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/testApend.css -------------------------------------------------------------------------------- /ConsoleApp1/汉仪清庭-55简.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/ConsoleApp1/汉仪清庭-55简.ttf -------------------------------------------------------------------------------- /CpfRazorSample/Component1.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CpfRazorSample/Component1.razor -------------------------------------------------------------------------------- /CpfRazorSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CpfRazorSample/Program.cs -------------------------------------------------------------------------------- /CpfRazorSample/Stylesheet1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CpfRazorSample/Stylesheet1.css -------------------------------------------------------------------------------- /CpfRazorSample/Test.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CpfRazorSample/Test.razor -------------------------------------------------------------------------------- /CpfRazorSample/Window1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CpfRazorSample/Window1.cs -------------------------------------------------------------------------------- /CpfRazorSample/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/CpfRazorSample/_Imports.razor -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/LICENSE -------------------------------------------------------------------------------- /Other/1image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/Other/1image.png -------------------------------------------------------------------------------- /Other/2image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/Other/2image.png -------------------------------------------------------------------------------- /Other/3image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/Other/3image.png -------------------------------------------------------------------------------- /Other/4image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/Other/4image.png -------------------------------------------------------------------------------- /Other/Rider/项目模板使用方法.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/Other/Rider/项目模板使用方法.png -------------------------------------------------------------------------------- /Other/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/Other/image.png -------------------------------------------------------------------------------- /Other/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/Other/weixin.png -------------------------------------------------------------------------------- /Other/yunchaobi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/Other/yunchaobi.gif -------------------------------------------------------------------------------- /Other/zhifubao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/Other/zhifubao.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsxhm/CPF/HEAD/README.md --------------------------------------------------------------------------------