Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 406757
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T17:31:39+00:00 2026-05-12T17:31:39+00:00

I have a login form that contains a username textbox and a password box.

  • 0

I have a login form that contains a username textbox and a password box.

I want the ok button to be enabled only when both the fields contain a value.

I have a converter that check for all the strings if they’re null or empty.

I placed a breakpoint on the first line of the Convert method, and it stops only when the MenuItem initializes, afterwords, i.e. when I change the text it doesn’t.

The following example works good, the problem is that the multibinding is not triggered when i change the text; it’s only bound when initializing the form:

<!--The following is placed in the OK button-->
<Button.IsEnabled>
    <MultiBinding Converter="{StaticResource TrueForAllConverter}">
        <Binding ElementName="tbUserName" Path="Text"/>
        <Binding ElementName="tbPassword" Path="Password"/>
    </MultiBinding>
</Button.IsEnabled>

I think the issue is that you don’t get notified when the remote binding source is changed (e.g. there is no an option to set UpdateTargetTrigger="PropertyChanged".

Any ideas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T17:31:40+00:00Added an answer on May 12, 2026 at 5:31 pm

    I would suggest you look into command binding. A command can enable or disable your Login button automatically depending on some condition (ie. user name and password is not empty).

    public static RoutedCommand LoginCommand = new RoutedCommand();
    
    private void CanLoginExecute(object sender, CanExecuteRoutedEventArgs e)
    {
        e.CanExecute = !string.IsNullOrEmpty(_userInfo.UserName) && !string.IsNullOrEmpty(_userInfo.Password);
        e.Handled = true;
    }
    
    private void LoginExecute(object sender, ExecutedRoutedEventArgs e)
    {
        MessageBox.Show("Loging in...");
        // Do you login here.
        e.Handled = true;
    }
    

    XAML command binding will look something like this

    <TextBox Text="{Binding UserName, UpdateSourceTrigger=PropertyChanged}" />
    <TextBox Text="{Binding Password, UpdateSourceTrigger=PropertyChanged}" />
    <Button Command="local:LoginWindow.LoginCommand" >Login</Button>
    

    To register the command in XAML

    <Window.CommandBindings>
        <CommandBinding Command="local:LoginWindow.LoginCommand" CanExecute="CanLoginExecute" Executed="LoginExecute" />
    </Window.CommandBindings>
    

    Or in code behind

    public LoginWindow()
    {
        InitializeComponent();
    
        CommandBinding cb = new CommandBinding(LoginCommand, CanLoginExecute, LoginExecute);
        this.CommandBindings.Add(cb);
    }
    

    More readigin here.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a login form that has Username and password as inputs from user
The problem I am encountering is that for my login form I have to
I have a form on my website that does the login. To make the
I have a login form consisting of a Form with two TextInput's. I want
on my web site I want to have login/registration form in modal window done
I have a web-site written in ColdFusion that contains both the usual interactive web
I have a small block that contains something like this: Login | Register When
I have an entity class User that contains information such as username, first name,
My task is create both login and registration form on one view! I have
I have a login form where the user can login only with the valid

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.