Coder Social home page Coder Social logo

bind's People

Contributors

mihamarkic avatar praeclarum avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

bind's Issues

crash when execption is raised within expression called via DynamicInvoke

I have a change proposal for
public static object EvalExpression (Expression expr)

Instead of:

return lambda.Compile ().DynamicInvoke ();

you could do this:

var deleg = lambda.Compile ();
try {
    return deleg.DynamicInvoke ();
}
catch (Exception ex) {
    return null;
}

This prevents the application from crashing whenever the expressen called via DynamicInvoke throws an exception. Any contraindication?

Method Unbind doesn't clear the subscription cache (objectSubs)

Solution :

Add to RemoveMemberChangeAction method this line objectSubs.Remove(key);

` internal static void RemoveMemberChangeAction(MemberChangeAction sub)
{
var key = Tuple.Create(sub.Target, sub.Member);
MemberActions subs;
if (objectSubs.TryGetValue(key, out subs))
{
// Debug.WriteLine ("REMOVE CHANGE ACTION " + sub.Target + " " + sub.Member);
subs.RemoveAction(sub);

            objectSubs.Remove(key);
        }
    }`

WPF Sample

Awesome Frank! Have you tried this with a basic WinForm/WPF app? I may be an idiot and fresh off vacation but doesn't seem to be working as I change values in the textboxes...

Value converters?

I think there should really be value converters in here. Besides classic IValueConverter there could be simply a pair of Func<TIn,TOut> being passed to binding method.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.