46 changed files with 747 additions and 147 deletions
@ -0,0 +1,38 @@
@@ -0,0 +1,38 @@
|
||||
<ContextMenu x:Class="ICSharpCode.WpfDesign.Designer.Extensions.DefaultCommandsContextMenu" |
||||
xmlns="http://schemas.microsoft.com/netfx/2007/xaml/presentation" |
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
xmlns:Translation="clr-namespace:ICSharpCode.WpfDesign.Designer" |
||||
> |
||||
<MenuItem Command="ApplicationCommands.Cut"> |
||||
<MenuItem.Icon> |
||||
<Image Source="/ICSharpCode.WpfDesign.Designer;component/Images/Icons.16x16.CutIcon.png" /> |
||||
</MenuItem.Icon> |
||||
</MenuItem> |
||||
<MenuItem Command="ApplicationCommands.Copy"> |
||||
<MenuItem.Icon> |
||||
<Image Source="/ICSharpCode.WpfDesign.Designer;component/Images/Icons.16x16.CopyIcon.png" /> |
||||
</MenuItem.Icon> |
||||
</MenuItem> |
||||
<MenuItem Command="ApplicationCommands.Paste"> |
||||
<MenuItem.Icon> |
||||
<Image Source="/ICSharpCode.WpfDesign.Designer;component/Images/Icons.16x16.PasteIcon.png" /> |
||||
</MenuItem.Icon> |
||||
</MenuItem> |
||||
<Separator /> |
||||
<MenuItem Command="ApplicationCommands.Delete"> |
||||
<MenuItem.Icon> |
||||
<Image Source="/ICSharpCode.WpfDesign.Designer;component/Images/Icons.16x16.DeleteIcon.png" /> |
||||
</MenuItem.Icon> |
||||
</MenuItem> |
||||
<Separator /> |
||||
<MenuItem Command="ApplicationCommands.Undo"> |
||||
<MenuItem.Icon> |
||||
<Image Source="/ICSharpCode.WpfDesign.Designer;component/Images/Icons.16x16.UndoIcon.png" /> |
||||
</MenuItem.Icon> |
||||
</MenuItem> |
||||
<MenuItem Command="ApplicationCommands.Redo"> |
||||
<MenuItem.Icon> |
||||
<Image Source="/ICSharpCode.WpfDesign.Designer;component/Images/Icons.16x16.RedoIcon.png" /> |
||||
</MenuItem.Icon> |
||||
</MenuItem> |
||||
</ContextMenu> |
@ -0,0 +1,43 @@
@@ -0,0 +1,43 @@
|
||||
// Copyright (c) 2014 AlphaSierraPapa for the SharpDevelop Team
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
|
||||
// software and associated documentation files (the "Software"), to deal in the Software
|
||||
// without restriction, including without limitation the rights to use, copy, modify, merge,
|
||||
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
|
||||
// to whom the Software is furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in all copies or
|
||||
// substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
||||
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
||||
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
|
||||
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
// DEALINGS IN THE SOFTWARE.
|
||||
|
||||
using System; |
||||
using System.IO; |
||||
using System.Linq; |
||||
using System.Windows; |
||||
using System.Windows.Controls; |
||||
using System.Windows.Markup; |
||||
using System.Xml; |
||||
using ICSharpCode.WpfDesign.Designer.PropertyGrid.Editors.FormatedTextEditor; |
||||
using ICSharpCode.WpfDesign.Designer.Xaml; |
||||
using ICSharpCode.WpfDesign.XamlDom; |
||||
|
||||
namespace ICSharpCode.WpfDesign.Designer.Extensions |
||||
{ |
||||
public partial class DefaultCommandsContextMenu |
||||
{ |
||||
private DesignItem designItem; |
||||
|
||||
public DefaultCommandsContextMenu(DesignItem designItem) |
||||
{ |
||||
this.designItem = designItem; |
||||
|
||||
InitializeComponent(); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,54 @@
@@ -0,0 +1,54 @@
|
||||
// Copyright (c) 2014 AlphaSierraPapa for the SharpDevelop Team
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
|
||||
// software and associated documentation files (the "Software"), to deal in the Software
|
||||
// without restriction, including without limitation the rights to use, copy, modify, merge,
|
||||
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
|
||||
// to whom the Software is furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in all copies or
|
||||
// substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
||||
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
||||
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
|
||||
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
// DEALINGS IN THE SOFTWARE.
|
||||
|
||||
using System; |
||||
using System.Linq; |
||||
using System.Windows; |
||||
using System.Windows.Controls; |
||||
using ICSharpCode.WpfDesign.Adorners; |
||||
using ICSharpCode.WpfDesign.Extensions; |
||||
|
||||
namespace ICSharpCode.WpfDesign.Designer.Extensions |
||||
{ |
||||
[ExtensionServer(typeof(PrimarySelectionExtensionServer))] |
||||
[ExtensionFor(typeof (UIElement))] |
||||
[Extension(Order = 10)] |
||||
public class DefaultCommandsContextMenuExtension : SelectionAdornerProvider |
||||
{ |
||||
DesignPanel panel; |
||||
ContextMenu contextMenu; |
||||
|
||||
protected override void OnInitialized() |
||||
{ |
||||
base.OnInitialized(); |
||||
|
||||
contextMenu = new DefaultCommandsContextMenu(ExtendedItem); |
||||
panel = ExtendedItem.Context.Services.DesignPanel as DesignPanel; |
||||
if (panel != null) |
||||
panel.AddContextMenu(contextMenu); |
||||
} |
||||
|
||||
protected override void OnRemove() |
||||
{ |
||||
if (panel != null) |
||||
panel.RemoveContextMenu(contextMenu); |
||||
|
||||
base.OnRemove(); |
||||
} |
||||
} |
||||
} |
After Width: | Height: | Size: 675 B |
After Width: | Height: | Size: 773 B |
After Width: | Height: | Size: 663 B |
After Width: | Height: | Size: 685 B |
After Width: | Height: | Size: 613 B |
After Width: | Height: | Size: 631 B |
@ -0,0 +1,27 @@
@@ -0,0 +1,27 @@
|
||||
using System; |
||||
using System.Collections.Generic; |
||||
using System.Linq; |
||||
using System.Text; |
||||
using System.Windows.Markup; |
||||
|
||||
namespace ICSharpCode.WpfDesign.XamlDom |
||||
{ |
||||
public class DesignInstanceExtension : MarkupExtension |
||||
{ |
||||
public DesignInstanceExtension(Type type) |
||||
{ |
||||
this.Type = type; |
||||
} |
||||
|
||||
public Type Type { get; set; } |
||||
|
||||
public bool IsDesignTimeCreatable { get; set; } |
||||
|
||||
public bool CreateList { get; set; } |
||||
|
||||
public override object ProvideValue(IServiceProvider serviceProvider) |
||||
{ |
||||
return null; |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue