Search results for query: *

  1. sbondo1234

    Question Disable buttons if all checkboxes are unticked

    Thanks for your response. Everything is working now. :D
  2. sbondo1234

    Question Disable buttons if all checkboxes are unticked

    I have a DataTemplate that holds: <DataTemplate x:Key="hostListItem"> <StackPanel Orientation="Horizontal"> <CheckBox x:Name="hostCheckBox" Margin="0 0 5 0" Unchecked="hostCheckBox_Unchecked" Checked="hostCheckBox_Checked"> </CheckBox>...
  3. sbondo1234

    Question How to upload file and POST vars to php

    I have a C# script that uploads an image to my webserver with PHP here: C#: WebClient Client = new WebClient(); Client.Headers.Add("Content-Type", "binary/octet-stream"); byte[] result = Client.UploadFile("https://example.com/test.php", "POST", @"C:\mario.jpg"); string s =...
  4. sbondo1234

    Resolved Interactable graphics draw over a different process window

    Ok, I have decided to just move the window in the code itself without an option to move it whilst the code is running. Got help from this post: pinvoke.net: movewindow (user32)
  5. sbondo1234

    Resolved Interactable graphics draw over a different process window

    Alright, thanks. I might look into events to check where the user's mouse is dragging.
  6. sbondo1234

    Resolved Interactable graphics draw over a different process window

    My main goal is to be able to move a window that doesn't have borders, the window is for a different process that wasn't made with the same c# script. If this is the wrong way to go about it please tell. Is it possible to draw graphics over a different processes window that is interactable...
Back
Top Bottom