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
B

BechBej

@BechBej
About
Posts
13
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • selected item for WPF ListBox [modified]
    B BechBej

    You can do this progammatically by using the IsSelected = true of the given MenuItem in the code behid too if I well understand the question, I mean you can test the value AAA using the selected value property of the combo box and then set the IsSelected property of the corresponding item to true

    WPF wpf csharp css database wcf

  • Curios as to why this doesn't work...
    B BechBej

    try to do add Updatesourcetrigger = Propertychanged to the xaml in addition to the two way, make sure that the object source bound property implement the INotifyPopertyChanged or is a dependency property

    WPF wpf csharp wcf question

  • CheckBox MultiBindings
    B BechBej

    You suggested that this must be done through xaml then try this [code] [/code]

    WCF and WF wpf question csharp php wcf

  • Arrange controls inside a user control in wpf
    B BechBej

    Did you mean something like this? [code]

    [/code] Try to copy and paste this in a blanc scene, it that what you want then you can also do this in code behind [code]Rectangle rect = new Rectangle { Width = 50, Height = 50, Fill = new SolidColorBrush(Colors.Blue) }; Canvas.SetLeft(rect, 50); Canvas.SetTop(rect,50); [/code]

    WPF csharp wpf help question

  • WPF App - different page than StartupUri getting called...
    B BechBej

    Check the code behind at the two levels at the app.cs and at the Mainwindow.cs then tell me whether is there a code there

    WPF wpf csharp question

  • WCF 2nd operation fails.
    B BechBej

    Witch application did you stoped and started did you mean the Silverlight UI one

    WCF and WF help csharp database wcf design

  • selected item for WPF ListBox [modified]
    B BechBej

    Is that you require something like this [Code] [/Code] This code will show One item as selected by default at the compile time and not after firing the application

    WPF wpf csharp css database wcf

  • How to make Single instance application to run
    B BechBej

    you have to implement the singleton pattern in this case move the startupuri attribute form the app.xaml and make the constructor of the statup window as private then define a static method within the form and instanciate that form within that static method private LunchWindow() { InitializeComponent(); } static public LunchWindow Singleton() { return new LunchWindow(); } override the OnStartup method of the app.cs and call that static method within the scope of the on startup method public partial class App : Application { protected override void OnStartup(StartupEventArgs e) { LunchWindow singleInstance = LunchWindow.Singleton(); singleInstance.Show(); } }

    WPF csharp wpf tutorial question

  • Binding to an objects member variable in a List
    B BechBej

    You can bind the list box to the collection and set the display member path property to the property name wich is name in this case and you will have all names displayed in the list

    WPF wpf help csharp wcf

  • WPF Designer Crash
    B BechBej

    Make sure to do not add more than one item with the same identifier or key

    WPF csharp help wpf learning

  • After changing global bool, IsEnabled property is not updating
    B BechBej

    OK You have two ways to do that, you either implement the INotifyPropertyChanged interface or simply change this CLR property to dependency property to let wpf handle notification

    WPF csharp wpf wcf sysadmin debugging

  • Clickable tooltip
    B BechBej

    You can use a button that you apply a tool tip control on it as a control template

    WPF question

  • How to convert a field in a LINQ query
    B BechBej

    The string.format(IFormatprovider, string, object) overload method could help you format you date as you wish take a look on that link http://msdn.microsoft.com/en-us/library/1ksz8yb7.aspx[^]

    LINQ question csharp css database linq
  • Login

  • Don't have an account? Register

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