Click here to Skip to main content
15,889,116 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: Loading image to Stackpanel Pin
Abhinav S13-Apr-12 20:48
Abhinav S13-Apr-12 20:48 
GeneralRe: Loading image to Stackpanel Pin
pix_programmer13-Apr-12 21:15
pix_programmer13-Apr-12 21:15 
AnswerRe: Loading image to Stackpanel Pin
Abhinav S14-Apr-12 4:53
Abhinav S14-Apr-12 4:53 
QuestionTabbed page navigation with separated navigation buttons Pin
Antonino Porcino13-Apr-12 8:52
Antonino Porcino13-Apr-12 8:52 
QuestionSet size for all "Window" in project at runtime Pin
Errorrist13-Apr-12 1:37
Errorrist13-Apr-12 1:37 
AnswerRe: Set size for all "Window" in project at runtime Pin
Wes Aday13-Apr-12 3:22
professionalWes Aday13-Apr-12 3:22 
AnswerRe: Set size for all "Window" in project at runtime Pin
Wayne Gaylard13-Apr-12 3:25
professionalWayne Gaylard13-Apr-12 3:25 
AnswerRe: Set size for all "Window" in project at runtime Pin
Errorrist13-Apr-12 8:35
Errorrist13-Apr-12 8:35 
Ok, it kinda works. But there are some points and questions in the code:


C#
public MainWindow()
        {
            InitializeComponent();

            using (FileStream fs = new FileStream(@"C:\projekte\MyButtonStyle.xaml", FileMode.Open))
            {
                ResourceDictionary rd = (ResourceDictionary)XamlReader.Load(fs);
                this.Resources = rd;
            }

            //THIS WORKS FINE PRETTY WELL


            //But now I want to try this:

            var style = new Style();
            style = ((Style)Resources["myFunctionButtonStyle"]);


            var styleClone = new Style();
            foreach (var setter in style.Setters)
            {
                var typedSetter = setter as Setter;
                if (typedSetter != null)
                {
                    var newSetter = new Setter(typedSetter.Property, typedSetter.Value);
                    styleClone.Setters.Add(newSetter);
                }
            }

            styleClone.Setters.Add(new Setter { Property = Button.FontSizeProperty, Value = (double)111 });

            //until here it works pretty well!
            //Now, how can I add this style to the Resources??? I mean, you showed me how to include xaml-files. but how is 
            // with pure Styles?????
            this.Resources.Add(      )

        }

Questioninsert data from excel file into datagrid Pin
MemberDotNetting12-Apr-12 23:23
MemberDotNetting12-Apr-12 23:23 
QuestionRe: insert data from excel file into datagrid Pin
Richard MacCutchan13-Apr-12 0:18
mveRichard MacCutchan13-Apr-12 0:18 
AnswerRe: insert data from excel file into datagrid Pin
MemberDotNetting13-Apr-12 1:45
MemberDotNetting13-Apr-12 1:45 
GeneralRe: insert data from excel file into datagrid Pin
Richard MacCutchan13-Apr-12 2:52
mveRichard MacCutchan13-Apr-12 2:52 
GeneralRe: insert data from excel file into datagrid Pin
MemberDotNetting13-Apr-12 4:28
MemberDotNetting13-Apr-12 4:28 
AnswerRe: insert data from excel file into datagrid Pin
Bernhard Hiller13-Apr-12 0:31
Bernhard Hiller13-Apr-12 0:31 
GeneralRe: insert data from excel file into datagrid Pin
MemberDotNetting13-Apr-12 1:45
MemberDotNetting13-Apr-12 1:45 
Questiondatagrid collection Pin
michaelgr111-Apr-12 8:53
michaelgr111-Apr-12 8:53 
QuestionBinding TextBox to DataGrid - WPF C# Pin
Sutton Mehaffey11-Apr-12 7:04
Sutton Mehaffey11-Apr-12 7:04 
QuestionTimer Pin
pix_programmer10-Apr-12 6:40
pix_programmer10-Apr-12 6:40 
AnswerRe: Timer Pin
Mycroft Holmes10-Apr-12 13:07
professionalMycroft Holmes10-Apr-12 13:07 
GeneralRe: Timer Pin
Pete O'Hanlon10-Apr-12 20:27
mvePete O'Hanlon10-Apr-12 20:27 
GeneralRe: Timer Pin
Mycroft Holmes10-Apr-12 20:48
professionalMycroft Holmes10-Apr-12 20:48 
AnswerRe: Timer Pin
Andy41111-Apr-12 2:37
Andy41111-Apr-12 2:37 
QuestionAnother WPF Styling Question Pin
Kevin Marois10-Apr-12 6:02
professionalKevin Marois10-Apr-12 6:02 
AnswerRe: Another WPF Styling Question Pin
Mycroft Holmes10-Apr-12 13:05
professionalMycroft Holmes10-Apr-12 13:05 
GeneralRe: Another WPF Styling Question Pin
Wes Aday10-Apr-12 13:27
professionalWes Aday10-Apr-12 13:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.