Search results for query: *

  1. sarita54

    Root type of template Content

    Yes sorry , i added it , do you know how access it please?
  2. sarita54

    Root type of template Content

    I want each item of the listbox beeing a button with an image and a text all this in the border , and when I click on one of the button I want to access the border
  3. sarita54

    Root type of template Content

    In a listBox , I have a items defined in control template and i want to reach the border when I click on one of the button <ControlTemplate TargetType="ListBoxItem"> <Button x:Name="stack" Click="Select_Country_Click" VerticalContentAlignment="Stretch"...
  4. sarita54

    Scrollbar And DragDelta

    I want to change the delta drag not to find the value thanks for the help
  5. sarita54

    Scrollbar And DragDelta

    Hi , I don t find how to change the drag delta of my scroll bar that I have customize , the scrollbar define like that : <Style x:Key="ScrollThumbs" TargetType="{x:Type Thumb}"> <Setter Property="Template"> <Setter.Value> <ControlTemplate...
  6. sarita54

    Root type of template Content

    Hi , I don t find how to access root type of template content ? Could you help me please? Thanks
  7. sarita54

    Installer Wix size

    Hi everyone , I create an installer for my WPF app through WIX with a size of 84 KB , it's huge , how i can reduce it please ?
  8. sarita54

    Download a .msi from my WPF app

    I have found the problem , i tried to execute the installer before the end of the downloading , thank you
  9. sarita54

    Download a .msi from my WPF app

    Hi , I have 2 questions : 1 . where i have to put my .msi file in order that users can download it ? 2 . To test , i have put it in my drive , and use this: System.IO.Directory.CreateDirectory("C:\\temp"); WebClient client = new WebClient(); client.DownloadFile(new...
  10. sarita54

    Resolved Hi , problem with updated my app

    Hi , I try to update my app , with a .msi installer from a update button in my app For that , I need to kill my current app before the installation : Process process = new Process(); process.StartInfo.FileName = "Update.msi"...
Back
Top Bottom