簡體   English   中英

使用ItemsControl類將對象添加到工具箱

[英]adding object to toolbox using ItemsControl class

我使用兩個類作為從ItemsControl派生的工具箱和從ContnentControl派生的ToolboxItem

// Implements ItemsControl for ToolboxItems    
public class Toolbox : ItemsControl
{

    // Defines the ItemHeight and ItemWidth properties of
    // the WrapPanel used for this Toolbox
    public Size ItemSize
    {
        get { return itemSize; }
        set { itemSize = value; }
    }

    private Size itemSize = new Size(50, 50);

    // Creates or identifies the element that is used to display the given item.        
    protected override DependencyObject GetContainerForItemOverride()
    {
        return new ToolboxItem();
    }

    // Determines if the specified item is (or is eligible to be) its own container.        
    protected override bool IsItemItsOwnContainerOverride(object item)
    {
        return (item is ToolboxItem);
    }
}





// Represents a selectable item in the Toolbox/>.
public class ToolboxItem : ContentControl
{
    // caches the start point of the drag operation
    private Point? dragStartPoint = null;

    static ToolboxItem()
    {
        // set the key to reference the style for this control
        FrameworkElement.DefaultStyleKeyProperty.OverrideMetadata(
            typeof(ToolboxItem), new FrameworkPropertyMetadata(typeof(ToolboxItem)));
    }

    protected override void OnPreviewMouseDown(MouseButtonEventArgs e)
    {
        base.OnPreviewMouseDown(e);
        this.dragStartPoint = new Point?(e.GetPosition(this));
    }

    protected override void OnMouseMove(MouseEventArgs e)
    {

        base.OnMouseMove(e);
        if (e.LeftButton != MouseButtonState.Pressed)
            this.dragStartPoint = null;

        if (this.dragStartPoint.HasValue)
        {
            // XamlWriter.Save() has limitations in exactly what is serialized,
            // see SDK documentation; short term solution only;
            string xamlString = XamlWriter.Save(this.Content);
            DragObject dataObject = new DragObject();
            dataObject.Xaml = xamlString;

            WrapPanel panel = VisualTreeHelper.GetParent(this) as WrapPanel;
            if (panel != null)
            {
                // desired size for DesignerCanvas is the stretched Toolbox item size
                double scale = 1.3;
                dataObject.DesiredSize = new Size(panel.ItemWidth * scale, panel.ItemHeight * scale);
            }

            DragDrop.DoDragDrop(this, dataObject, DragDropEffects.Copy);

            e.Handled = true;
        }
    }
}

// Wraps info of the dragged object into a class
public class DragObject
{
    // Xaml string that represents the serialized content
    public String Xaml { get; set; }

    // Defines width and height of the DesignerItem
    // when this DragObject is dropped on the DesignerCanvas
    public Size? DesiredSize { get; set; }
}

public partial class Window1 : Window
{
    public Window1()
    {
        InitializeComponent();

    }


    private void Button_Click(object sender, RoutedEventArgs e)
    {

        DesignerItem ni = new DesignerItem();
        ni.AllowDrop = true;
        ni.ToolTip = "tooltip goes here";
        ni.Width = 100;
        ni.Height = 200;
        ni.Background = Brushes.Red;

        //somehow code should introduce the object shape as object. in the sample on codeproject it is reading shape information from xaml but I need to add it from code behind. 


        Toolbox tb = new Toolbox();
        tb.Items.Add(ni);

ItemsControl的AddChild()方法必須是在工具箱上添加新對象的方法。 但是,當我從此類實例化一個對象時,它沒有給我這種方法。 為簡單起見,我只想在其上添加一個矩形形狀,這將允許我將其拖放到畫布上。 所以問題是我怎么能在toobox上添加一個矩形。

任何幫助表示贊賞。

謝謝。 阿米特

解:

var TheToolbar = ToolboxContainer.Content as Toolbox;

// Instantiate a ToolboxItem
ToolboxItem TheToolboxItem = new ToolboxItem();

Rectangle myRect = new Rectangle();
myRect.StrokeThickness = 1;
myRect.Stroke = some value for stroke;
myRect.Fill = some value for filling the object;
myRect.IsHitTestVisible = false;
//add to Toolbar
TheToolboxItem.Content= myRect;
TheToolbar.Items.Add(TheToolboxItem);  

AddChild()是一種受保護的方法(=僅可從其自身或從繼承的類訪問)。 嘗試使用如下代碼:

Toolbox tb = new Toolbox();
tb.Items.Add(myNewItem);

實例化對象后,需要將它們作為子代添加到canvas / parent元素中。

myParentElement.Children.Add(tb);

如果要這樣做,請將其包含在示例代碼中。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM