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 6914847
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T09:24:00+00:00 2026-05-27T09:24:00+00:00

I want to DataBind between those two controls in xaml how I do so

  • 0

I want to DataBind between those two controls in xaml how I do so ?

 <MenuItem Header="_Log" IsCheckable="True"/>

 <TextBox Name="_commandsRichTextBox" ,Visibility="Collapsed"/>

And I wrote a converter:

class BoolToVisibilityConverter : IValueConverter
    {
        public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
        {
            if (targetType != typeof(Visibility))
                throw new InvalidOperationException("The target must be a Visibility");

            return (bool)value ? Visibility.Visible : Visibility.Collapsed;    

        }

        public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
        {
            throw new NotImplementedException();
        }
    }

And I now have an issue to connect everything.

Thanks for helper .

  • 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-27T09:24:01+00:00Added an answer on May 27, 2026 at 9:24 am

    There already is a converter for that: BooleanToVisibilityConverter

    <Window.Resources>
        <BooleanToVisibilityConverter x:Key="converter"/>
    </Window.Resources>
    <!-- ... -->
    <MenuItem Name="mi" Header="_Log" IsCheckable="True"/>
    <TextBox Name="_commandsRichTextBox" Visibility="{Binding IsChecked, ElementName=mi, Converter={StaticResource converter}}"/>
    

    I would only recommend binding from control to control if you can be sure that the data stays in the view, otherwise create a bindable property and just bind both controls to that, the MenuItem will change the value and the TextBox will react.

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

Sidebar

Related Questions

Problem 1: I have a simple winforms app and I want to DataBind my
I have a 2-dimensional array of objects and I basically want to databind each
I want to databind a textblock to some CLR objects so I can display
I want to perform a JOIN on two Datatables in a Dataset. For example,
I want to databind an ItemsCollection, but instead of rendering the collection items, I
So I am learning WPF right now, and want to do a simple databind
I want to databind a ListBox to a linked list public class MyClass {
i want to databind hierarchical data from plain data to the ASPxTreeList, i checked
I want to databind an ObservableCollection to a Pivot contronl in WP7 so that
I have two tables: I want to fill an ASP.NET server control drop down

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.