Tagged Questions
1
vote
1answer
25 views
extjs - Multiple delegations for click event
How do I make it so that I can have multiple delegations? The code below is the one I attempted, but it didn't end up working.
listeners: {
el: [{
delegate: '.my-boundlist-item-menu',
...
0
votes
3answers
43 views
Catch key pressed on Form1 from the Class
Here is my class with event handler:
public delegate void MyKeyEventHandler(object sender, KeyEventArgs e);
public class KeyEvent
{
public event MyKeyEventHandler keyEvent;
public string key ...
0
votes
1answer
49 views
why do events exist?
Yes, alright, it is probably a stupid question but I can´t understand events. I mean that I understand what delegates are for, I can create avents and handle them but I don´t actually understand them. ...
0
votes
0answers
15 views
MainPageResized and ScenarioLoaded events from MainPage.xaml.cs
I'm studying some examples of C# from Microsoft, mainly MainPage.xaml.cs file. In that file some events called my attention: MainPage_SizeChanged and Scenarios_SelectionChanged.
Both events are ...
1
vote
1answer
60 views
Passing Data Between 3 Separate WinForms
Throughout my time coding in the realm of C# WinForms, I have had many instances in which I have come across different methods of passing data between forms. I work on a large codebase -- some of ...
1
vote
2answers
94 views
how to check if a method can be handler of an event through C# reflection? [duplicate]
I create an event based system, where a class will provides bunch of events, and another class with its member method can attach to the first class as its event handler, and... i just want to do ...
0
votes
0answers
20 views
How to remove/list handlers attached with HtmlElement.AttachEventHandler?
I'm using HtmlElements. I want to display a property of the element the user clicked on. The displaying is implemented in a method ( myClickHandler(HtmlElement e) ) wrapped in the d delegate seen in ...
0
votes
1answer
64 views
C# event is null
I am just working on a project in which i need to raise and handle a custom event... i just simplified a little bit the code and got something like this:
class Car
{
public int Speed { get; set; ...
0
votes
1answer
46 views
Omit sender of delegates
Is it possible to send reference of 'sender' without specifying it explicitly as a parameter in delegate-based event handling?
I have a internal class which raises some events and I want to call the ...
0
votes
1answer
87 views
How to get event name in called method
I am using reflection to add an event handler to an event :
var eventInfo = type.GetEvent(eventName);
MethodInfo mi = GetType().GetMethod("TestMethod",
BindingFlags.Instance | ...
0
votes
2answers
49 views
Global function repository
I have several Control such as ToolStripMenuItem and Button that need to have a function bound to their click event. They will either generate a new Form or add a TabPage to a current TabControl. I ...
4
votes
5answers
148 views
What does this line of C# code actually do?
I'm trying to understand what a block of code in an application does but I've come across a bit of C# I just don't understand.
In the code below, what does the code after the "controller.Progress +=" ...
0
votes
0answers
17 views
Lightweight crossplatform library/libraries for threading, mutual exclusion, events & delegation?
I've found Boost and QT to provide cross-platform solutions to threading, events and mutual exclusion, but both these libraries are bloated and programmers don't like using them.
Besides, QT has a ...
0
votes
3answers
63 views
C# Using a Timer to Affect Instances While Accepting User Input
I am trying to learn c# by making a tetris console application. I have a gameBoard class ("gb" in the code) and a block class ("bl" in the code.) The code below is what I have so far to move a block ...
1
vote
2answers
70 views
unit testing a class with event and delegate
I am new to testing please help.
I have the following class
public delegate void OnInvalidEntryMethod(ITnEntry entry, string message);
public class EntryValidator
{
public event ...
0
votes
2answers
40 views
Personnal implementation of Java events in Slick2D
I'm making my own windowing system in Java with Slick2D right now and I want to add buttons to my windows! The thing is that I have no knowledge on events or such things... Everywhere I look it's ...
0
votes
4answers
89 views
Callback function and best practice
UPDATE: I phrased the question wrong. Both the inner and outer Latitude/Longitude members need to update each other resulting in recursion. The outer members get updated by a database context while ...
0
votes
1answer
53 views
Is it possible to use Actions in an interface with add/remove?
Basically I'm trying to do this with Actions. I need to do something like that as opposed to a property because in at least one of the concretions an Action from another class is referenced- since you ...
0
votes
1answer
44 views
Handling/Designing event usage in C# in a nice way
I'm writing a small text-editor like utility for our in-house staff to use to modify a bunch of company specific files. I want design this in such a way we minimize leaky handlers and would like to ...
6
votes
2answers
42 views
Should event handlers be decorated with their delegate?
Both of the following variations compile and on the surface seem to behave in the same way. Aside from syntax sugar are there any other differences?
someObject.SomeEvent += new ...
0
votes
0answers
33 views
how to update Presentation layer from Business logic layer?
I am working with plain three layered architecture with enterprise library. I am using asynchronous db calls. I have a scenario where I need to update UI from the Biz layer's callback method. kindly ...
1
vote
2answers
29 views
c# pass method that needs to subscribe to an event
I need some help declaring the Subscribe() method below. Pretty much i want to intercept anybody who wants to register to future updates and tell them about previous events.
class Test
{
public ...
2
votes
2answers
65 views
Querying one delegate twice for one event
I was recently asked a question what will happen if I would query one handler twice. Let me just show you code:
public delegate void OpenEventHandler(object sender, EventArgs e);
public class ...
-1
votes
3answers
46 views
how do I pass parameters when attaching a method to an event in c#
I am trying to send parameters to a method which is called by an event when attaching the event listener, I can create the parameters in an anonymous method which works fine however I would Ideally ...
1
vote
3answers
88 views
Do private event handlers break encapsulation?
Everybody knows that private event handler can listen to an event from other class. (Examples in documentation always use just private handlers.)
Event handler is nothing more than a private method ...
0
votes
1answer
85 views
Eventhandler not getting unsubscribed
In my silverlight application, I am passing a method GetListCallBack to a delegate parameter of another method GetEmployees in Repository class which attaches that delegate as eventhandler to ...
0
votes
2answers
49 views
Clarifying events invocation
public delegate void EventHandler(object sender, EventArgs e);
public class Button: Control
{
public event EventHandler Click;
protected void OnClick(EventArgs e) {
if (Click != null) ...
0
votes
3answers
36 views
sending data from multiple threads to main form in C#NET
I have multiple IP devices connected to my computer. Each device is connected using separate thread. Each thread is assigned a function using class instance and communicate using socket programming. ...
0
votes
0answers
49 views
C# - Assigning a method to a delegate through a new delegate [duplicate]
I'm trying to learn about delegates and events and when assigning a method to a delegate I see that everybody does this:
public delegate void MyDelegate();
MyDelegate DelegateObj1 = new ...
0
votes
1answer
36 views
WCF Extensibility MessageEncoder Implement
how can i map the ReadMessage and WriteMessage to an Event that i can control the message encoding out of the class library ?
public class CustomMessageEncoder:MessageEncoder
{
public delegate ...
1
vote
1answer
90 views
Use of the event keyword in c#
I was wondering what the exact use of events is in c#. I am still in the process of learning c# so I maybe missing something but is it possible to just use delegates.
In this example I wrote a class ...
0
votes
2answers
247 views
C# Passing Parameters - Dynamic Event Subscription
I have the below in my controller and would like to pass x, y, and z of type float to subscribers. I'm having some difficulties catching on however. What would I have to adjust to allow me to pass my ...
0
votes
1answer
31 views
Delegate: Specifying Method (or its name) in Custom Server Control, to be called
I am working on a ASP.net custom server control, with jquery, WCF and stuff. I want to give the developer, using it, the flexibility of specifying an on success function (to be called when a task is ...
0
votes
1answer
119 views
Windows Forms - using public event to subscribe Form to a user control event
I have an issue when it comes working with events and/or delegates. I saw very similar questions but still the real implementation is not clear to me. So please when you answer be more specific so I ...
0
votes
0answers
35 views
Delegating events firing repetion
I was certain I hade this nailed, but I am getting repetion of the action
$('body').on('click', "[data-behave='revealEditNote']", function (e) {
e.stopPropagation();
...
0
votes
2answers
76 views
.Net- Action<T> Delegate error?
i am using Action<T> Delegate to make a link between class and Form. the class connects to serial port and data received is displayed in the form. the Action<T> Delegate encapsulates a ...
2
votes
2answers
120 views
How to publish and subscribe to events across different classes
Goal: To change a image on a form when either udp or tcp uses its send method
Problem: I have no idea how to get the event, eventhandler and delegates set up correctly
Send Interface
interface ...
0
votes
1answer
36 views
Event unsubscribe
I need to unsubscribe all delegates subscribed on my event. But I found two ways to do it..
class Cls
{
delegate void doDel();
static event doDel doE;
void Uns
{
//first
...
0
votes
1answer
65 views
Why I cannot trigger enhancements on jquery mobile widgets, when using jqmData to add attributes?
I'm trying to create a fully dynamic 'jquery mobile' 'table widget'.
Problem is, JQM is using this to create different "table-modes":
$.mobile.document.delegate( ":jqmData(role='table')", ...
0
votes
1answer
52 views
Default type for generics in C#. SO claims this is not possible, and yet it would appear that EventHandler exhibits this behavior?
The answers in this question claim that it is impossible to specify a default type argument that will be used if the consumer of the generic class does not specify a type.
But when addressing the ...
0
votes
0answers
48 views
Is there any advantage of using EventArgs as opposed to using the full method signature?
I've just gotten done fiddling with events, and I can't see any advantage of using EventArgs over creating a delegate that uses the full method signature. Creating the class that derives from ...
-1
votes
3answers
629 views
C# update form from another form using delegate and event
I keep forgetting how this is done..
I want to update the UI on the main form from Form2 without creating an instance of the form. I remember using a delegate / event and possibly passing in an ...
5
votes
2answers
167 views
Multicast delegate and event
I am studying about delegates. Few days back, I did a sample for a multicast delegates and reviewed here My previous question and clearly understood about multicast delegate.
But now I trying to do ...
1
vote
3answers
109 views
Why use events for what I can do with Delegates?
I know Events are always associated with Delegates. But, I am missing some core use of Events, and trying to understand that.
I created a simple Event program, as below, and it works perfectly fine.
...
0
votes
2answers
53 views
How to do updates over 3 classes
Usually we update some data from ClassB to ClassA (so over 2 classes) – by using events or delegates.
What I need to do is to update ClassA from ClassC (ClassC is opened through ClassA and ClassB). ...
5
votes
1answer
100 views
Difference between private EventHandler and private event EventHandler?
Basically what the title says.
Whats the difference between those two (I am currently using the first one)
private EventHandler _progressEvent;
and
private event EventHandler _progressEvent;
I ...
1
vote
1answer
40 views
Autoupdatable properties in Visual Basic .NET
I am a beginner VB.NET programmer and I am trying to implement a class Principal with two members which are instances of two different classes.
As I am learning how to use events and delegates I ...
1
vote
1answer
58 views
How to remove all event handlers?
Does setting the event to null effectively detach all targets?
public class Test
{
public delegate void SomethingHappenedEventHandler(Test obj);
public event SomethingHappenedEventHandler ...
1
vote
5answers
103 views
Delegate and event
I have 2 forms.
Form1:
public partial class Panel1
{
public void ShowExport(object sender, EventArgs e)
{
.......
}
}
Form2:
public partial class ...
-1
votes
1answer
44 views
What are the possible needs of more than 2 parameters of EventHandler(Object sender, CustomEvtArgs custEvtArgs)? [closed]
I see the C# code when EventHandler has more than 2 parameter.
Is it a good practice?
What are the possible examples when implementing a custom event arguments CustomEvtArgs : EvtArgs class is ...


