Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
M

Marc Jeeves

@Marc Jeeves
About
Posts
5
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Using Dependency Property's to Affect Non WPF Property's
    M Marc Jeeves

    So how would you guys build this custom control?

    WPF wpf csharp performance announcement

  • Using Dependency Property's to Affect Non WPF Property's
    M Marc Jeeves

    Thanks I will give it a try, and post the full example once completed for others.

    WPF wpf csharp performance announcement

  • Using Dependency Property's to Affect Non WPF Property's
    M Marc Jeeves

    Im building a Ticker User Control and my dependency property's that directly bind to the XAML which works great, but I have some dependency property's that drive the Beating Internal Class which controls the motion of the three bars. When I change these in the viewmodel they have no affect on the Internal Class Property's so I cant change the speed or starting length and so on. I though if I passed in the Code behind class into the Beating internal class I could do it this way, but i almost need an onPropertychanged event to force the update. thanks Madaxe XAML User Control

    WPF wpf csharp performance announcement

  • Can Not Bin to Dependency Property in Custom Control
    M Marc Jeeves

    Spot on, sometimes its the wood for the trees. thanks a bunch Madaxe

    WPF wpf wcf xml help

  • Can Not Bin to Dependency Property in Custom Control
    M Marc Jeeves

    Within my View Model i have a property and backer to bind to the ControlHideShow, I don't get a bind error but if I change the default value in the View Model nothing happens.  If I don't bind in the Implementation XAML and set Visible or Hidden it works so why can I not bind to the ViewModel thanks Madaxe

    Public interface ViewModel
    {
            Visibility ControlHideShow { get; set; }
    }
        
    public class MainPageViewModel : ViewModelBase, IMainPageViewModel
    {
        
            private Visibility _controlHideShow = Visibility.Visible;
            public Visibility ControlHideShow
            {
                get => _controlHideShow;
                set{ _controlHideShow = value;  OnPropertyChanged(nameof(ControlHideShow)); }
            }

    }

    Implementation XML

    ControlHideShow="{Binding ControlHideShow}"/>

    Custom Control XAML

    WPF wpf wcf xml help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups