internal ToolTipFiring(NeuralNetworkVisualizerControl control, Control controlToToolTip, ISelectionResolver selectionResolver, IInvoker invoker)
 {
     _control            = control;
     _controlToToolTip   = controlToToolTip;
     _selectionResolver  = selectionResolver;
     _invoker            = invoker;
     lastToolTipLocation = new Position(0, 0);
 }
        internal SelectionEventFiring(NeuralNetworkVisualizerControl control, IElementSelector selector,
                                      SelectInputLayer selectInputLayer,
                                      SelectNeuronLayer selectNeuronLayer,
                                      SelectBias selectBias,
                                      SelectInput selectInput,
                                      SelectNeuron selectNeuron,
                                      SelectEdge selectEdge)
        {
            _control  = control;
            _selector = selector;

            _selectInputLayer       = selectInputLayer;
            this._selectNeuronLayer = selectNeuronLayer;
            _selectBias             = selectBias;
            _selectInput            = selectInput;
            _selectNeuron           = selectNeuron;
            _selectEdge             = selectEdge;
        }
Exemple #3
0
 internal ToolTipFiring(NeuralNetworkVisualizerControl control, Control controlToToolTip, ISelectionResolver selectionResolver)
 {
     _control           = control;
     _controlToToolTip  = controlToToolTip;
     _selectionResolver = selectionResolver;
 }
Exemple #4
0
 internal ControlCanvas(PictureBox pictureBox, NeuralNetworkVisualizerControl control, IInvoker invoker)
 {
     _pictureBox = pictureBox;
     Control     = control;
     _invoker    = invoker;
 }
 internal ControlCanvas(PictureBox pictureBox, NeuralNetworkVisualizerControl control)
 {
     _pictureBox = pictureBox;
     _control    = control;
 }