Skip to content
  • 0 Votes
    4 Posts
    0 Views
    R
    It doesn't work like that. There are plenty of sites where you can hire someone to do your work for you. This is not one of them. We're happy to help with specific problems in code you have written. But this is not a "do my work for me" or a "convert this code for me" type of site. "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • 0 Votes
    2 Posts
    6 Views
    L
    You can save program information in the AppSettings file, see https://learn.microsoft.com/en-us/iis-administration/configuration/appsettings.json[^].
  • 0 Votes
    1 Posts
    6 Views
    No one has replied
  • Add Handler For Child Control Event

    WPF css wpf wcf
    1
    0 Votes
    1 Posts
    4 Views
    No one has replied
  • 0 Votes
    3 Posts
    0 Views
    H
    I ended up going with is_color_model<> which makes perfect sense in my library's vernacular where a color model is a composition of color channels with particular names. Check out my IoT graphics library here: https://honeythecodewitch.com/gfx And my IoT UI/User Experience library here: https://honeythecodewitch.com/uix
  • 0 Votes
    6 Posts
    11 Views
    J
    Gonna guess this is the "(almost)". Heh.
  • 0 Votes
    3 Posts
    8 Views
    K
    I do WPF for a living. I have the Control Development book. In the part about creating custom controls, ALL the xaml from the template is used in the examples. I want to create subclass of a combox box. I don't need the XAML for the button or the textbox, or any other part except for the content site. If you go look at the XAML in the link I provided, I want to replace this: Something like this public class MyComboBox : ComboBox { static MyComboBox() { DefaultStyleKeyProperty.OverrideMetadata(typeof(MyComboBox), new FrameworkPropertyMetadata(typeof(MyComboBox))); } // Add DP's \* logic here } and <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="ComboBox"> </ControlTemplate> </Setter.Value> </Setter> If I do this XAML, the ENTIRE template is replaced, so I'd have to recreate the textbox, button, etc. What I'm asking is, instead of replacing the ENTIRE TEMPLATE, can I somehow replace just a small piece of that template? In theory, theory and practice are the same. But in practice, they never are.” If it's not broken, fix it until it is. Everything makes sense in someone's mind.
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • Invoke WPF

    WPF csharp wpf help question
    3
    0 Votes
    3 Posts
    8 Views
    G
    This is extremely helpful to know! Thanks!
  • ICommand Wpf form load properties?

    WPF wpf csharp sharepoint architecture question
    6
    0 Votes
    6 Posts
    7 Views
    G
    Thank you much Richard. I think I got it. Thanks again!
  • VS Git

    The Lounge help question csharp visual-studio wpf
    4
    0 Votes
    4 Posts
    0 Views
    J
    Kevin Marois wrote: I added 4 previously existing projects, which all have their own repos, to the solution. If you change two files in two of those repos how are you going to handle checkins? How are you going to insure that if you need to rebuild a delivered laydown (one or more binaries) that you will be able to reliably reproduce the original binary? Kevin Marois wrote: What am I doing wrong here? Not managing Git as intended? A git repo is a deliverable. So your new project should be using 4 deliverables not 4 repos. Each repo should be independently worked and then a binary is released. With a version number. Your project uses the binary and specifies it via the version number. In contrast there are other version control systems that allows one to manage deliverables from one single location. You can, for example, independently label parts of those any way you want. And then combine into another deliverable either by combining labels or just take the tip of everything. You can even label individual files. But other than that as others have mentioned you need a new repo.
  • WrapPanel / ItemsControl Problem

    WPF wpf help csharp css wcf
    4
    0 Votes
    4 Posts
    7 Views
    R
    Kevin Marois wrote: I removed the ItemsPanel, and there are no binding errors, yet I still see nothing. Which means the problem is nothing to do with the items panel; either it's not binding to the collection, or the collection is empty. "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
  • Pro bono solution

    The Lounge csharp css database wpf
    3
    0 Votes
    3 Posts
    0 Views
    M
    Interesting stuff - thanks for that. Never underestimate the power of human stupidity - RAH I'm old. I know stuff - JSOP
  • 0 Votes
    3 Posts
    0 Views
    N
    Joe Woodbury wrote: Is there a betting pool as to when Microsoft changes their mind? Microsoft is asking to be the new Google M.D.V. ;) If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about? Help me to understand what I'm saying, and I'll explain it better to you Rating helpful answers is nice, but saying thanks can be even nicer.
  • Wrong images in my Tip/Trick

    Article Writing announcement csharp css wpf com
    5
    0 Votes
    5 Posts
    0 Views
    J
    Well done, thank you :thumbsup:
  • 0 Votes
    30 Posts
    1 Views
    H
    There is a time and a place for it, and it's sometimes useful when doing some heavy Generic Programming. Like, in theory if you had to design your own tuple type (I know std already has one, but ignoring that), the function to access a tuple's value might be an auto because it's difficult to even type out the template instantiation necessary for the return type, much less come up with it. Another place I use it: In my graphics library you can define pixels with an arbitrary memory footprint. Different amounts of bits for different channels, like RGB565 or YUV888 etc. Because of the arbitrary nature of it the integer values for each channel may be a different type. For example, while a channel probably won't be more than a uint8_t can hold (8-bits) it might be (12 bits? uint16_t would be necessary) Because of that, when I go to assign values from arbitrary pixel formats I don't actually *know* what type it is, other than some kind of integer of 64 bits or less (based on static_assert constraints). So I could always promote it to a uint64_t but that creates other problems when you have to cast down again. So auto is what's for dinner. Check out my IoT graphics library here: https://honeythecodewitch.com/gfx And my IoT UI/User Experience library here: https://honeythecodewitch.com/uix
  • Emilie Dubois

    The Lounge wpf com collaboration
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied