How to change TextBox placeholder text color for a specific element, not global

后端 未结 2 1608
暖寄归人
暖寄归人 2021-01-12 18:38

MSDN lists the styles and templates for the TextBox class here. I can override these theme resources by creating a ResourceDictionary in App.

2条回答
  •  独厮守ぢ
    2021-01-12 19:17

    Assuming you are using MSDN Textbox Style

    Resource Remove Foreground Property from Contencontrol in Template

    
        
                   
     
    

    Xaml

     
        
            
                
            
        
        
            
                
            
        
        
            
                
            
        
    
    

    enter image description here

    Update

    Resource

    Remove Foreground Property from Contencontrol in Template

    
        
            
                
                    
                    
                
                
                    
                    
                
                
                    
                    
                
            
            
        
    
    

    xaml

    
        
            
                
            
        
        
            
                
            
        
    
    

    enter image description here

提交回复
热议问题